-
-
Notifications
You must be signed in to change notification settings - Fork 419
/
karma.conf.js
66 lines (60 loc) · 1.55 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
const ci = !!process.env.CI;
const watch = !!process.env.WATCH;
const live = !!process.env.LIVE;
const ip = 'bs-local.com';
const browserstack = require('./browserstack-karma.js');
if (!process.env.TRAVIS_BUILD_NUMBER) {
const time = new Date()
.toISOString()
.replace(/T/, ' ')
.replace(/\..+/, '');
process.env.TRAVIS_BUILD_NUMBER = 'local(' + time + ')';
}
const browsers = ci
? Object.keys(browserstack)
: live
? undefined
: ['Chrome', 'Firefox'];
module.exports = {
basePath: '.',
frameworks: ['mocha', 'karma-typescript'],
// list of files / patterns to load in the browser
files: [{pattern: 'src/**/*.ts'}, {pattern: 'test/browser/**/*'}],
plugins: [
'karma-mocha',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-browserstack-launcher',
'karma-typescript',
],
hostname: ci ? ip : 'localhost',
// list of files / patterns to exclude
exclude: [],
preprocessors: {
'src/**/*.ts': ['karma-typescript'],
'test/**/*.ts': ['karma-typescript'],
},
browserStack: {
retryLimit: 3,
build: process.env.TRAVIS_BUILD_NUMBER,
},
browserNoActivityTimeout: 1000000,
customLaunchers: browserstack,
karmaTypescriptConfig: {
coverageOptions: {
exclude: /test\//,
},
tsconfig: './tsconfig.json',
include: {
mode: 'merge',
values: ['test/browser/**/*'],
},
},
reporters: ['dots', 'karma-typescript', 'BrowserStack'],
port: 9876,
colors: true,
autoWatch: true,
browsers: browsers,
singleRun: !watch && !live,
concurrency: ci ? 1 : Infinity,
};