Fix all karma configs

- exclude all tests from within node_modules folder
This commit is contained in:
Denys Vuika
2016-06-16 11:14:46 +01:00
parent 645bc9f6f8
commit 4e47ce3327
6 changed files with 27 additions and 3 deletions

View File

@@ -30,6 +30,10 @@ module.exports = function (config) {
{pattern: 'dist/**/*.js.map', included: false, watched: false}
],
exclude: [
'node_modules/**/*spec.js'
],
// proxied base paths
proxies: {
// required for component assets fetched by Angular's compiler
@@ -83,7 +87,7 @@ module.exports = function (config) {
{type: 'html'}
]
}
}
};
if (process.env.TRAVIS) {
configuration.browsers = ['Chrome_travis_ci'];