forked from aframevr/aframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
86 lines (80 loc) · 2.42 KB
/
karma.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Karma configuration.
var path = require('path');
var glob = require('glob');
var webpackConfiguration = require("../webpack.config.js");
// Define test files.
var FILES = [
// Serve test assets.
'tests/__init.test.js',
{pattern: 'tests/assets/**/*', included: false, served: true}
];
if (process.env.TEST_FILE) {
glob.sync('tests/**/*.test.js').forEach(function (filename) {
if (filename.toLowerCase().indexOf(process.env.TEST_FILE.toLowerCase()) !== -1) {
FILES.push(filename);
}
});
} else {
// This global pattern produces some test failures
// FILES.push('tests/**/*.test.js');
// Using a pattern for each folder will change the tests execution order and
// all tests pass...
var excluded_folders = ['assets', 'coverage', 'node'];
glob.sync('tests/*/').forEach(function (dirname) {
if (excluded_folders.indexOf(dirname) !== -1) return;
FILES.push(dirname + '**/*.test.js');
});
}
// add 'src' to be able to resolve require('utils/tracked-controls') for
// example in the tests
webpackConfiguration.resolve.modules = ['src', 'node_modules'];
// webpack will create a lot of files, use build directory instead of dist
webpackConfiguration.output.path = path.resolve(__dirname, '../build');
var karmaConf = {
basePath: '../',
webpack: webpackConfiguration,
browsers: ['Firefox', 'Chrome'],
customLaunchers: {
ChromeTravis: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
client: {
captureConsole: true,
mocha: {ui: 'tdd', timeout: 3000}
},
envPreprocessor: [
'TEST_ENV'
],
files: FILES,
frameworks: ['mocha', 'sinon-chai', 'chai-shallow-deep-equal', 'webpack'],
preprocessors: {
'tests/**/*.js': ['webpack', 'env']
},
reporters: ['mocha']
};
// Configuration for code coverage reporting.
if (process.env.TEST_ENV === 'ci') {
// modify the babel-loader rule
karmaConf.webpack.module.rules[0].use.options = {
plugins: [['istanbul', { 'exclude': ['**/node_modules/**', '**/tests/**', '**/vendor/**', '**/*.css'] }]]
};
karmaConf.coverageReporter = {
dir: 'tests/coverage',
includeAllSources: true,
reporters: [
{'type': 'html', subdir: 'report'},
{'type': 'lcov', subdir: '.'}
]
};
karmaConf.reporters.push('coverage');
karmaConf.browsers = ['Firefox', 'ChromeTravis'];
}
if (process.env.NO_BROWSER) {
delete karmaConf.browsers;
}
// Apply configuration.
module.exports = function (config) {
config.set(karmaConf);
};