This repository has been archived by the owner on Sep 6, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
karma.conf.js
84 lines (78 loc) · 2.51 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
// Karma configuration file, see link for more information
// https://karma-runner.github.io/0.13/config/configuration-file.html
const {CUSTOM_LAUNCHERS} = require('./browsers');
// Source: https://github.com/angular/angular/blob/master/karma-js.conf.js.
const sauceLabs = {
testName: 'Angular Lab (Unit)',
retryLimit: 3,
startConnect: false,
recordVideo: false,
recordScreenshots: false,
options: {
'command-timeout': 600,
'idle-timeout': 600,
'max-duration': 5400
}
};
module.exports = function (config) {
const reporters = config.angularCli && config.angularCli.codeCoverage ? ['progress', 'coverage-istanbul'] : ['progress', 'kjhtml'];
if (process.env.TRAVIS) {
sauceLabs.build = `TRAVIS #${process.env.TRAVIS_BUILD_NUMBER} (${process.env.TRAVIS_BUILD_ID})`;
sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
// Also use the SauceLabs reporter provided by 'karma-sauce-launcher',
// otherwise the `{passed}` flag never gets set (hence the gray builds in the browser matrix badge).
reporters.push('saucelabs');
}
config.set({
sauceLabs,
reporters,
basePath: '',
frameworks: [
'jasmine',
'@angular/cli'
],
plugins: [
require('karma-jasmine'),
require('karma-jasmine-html-reporter'),
require('karma-chrome-launcher'),
require('karma-sauce-launcher'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma')
],
client: {
// Leave Jasmine Spec Runner output visible in browser.
clearContext: false
},
files: [
{pattern: './src/test.ts', watched: false}
],
preprocessors: {
'./src/test.ts': ['@angular/cli']
},
mime: {
'text/x-typescript': ['ts', 'tsx']
},
coverageIstanbulReporter: {
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true,
thresholds: {
statements: 80,
lines: 80,
branches: 40,
functions: 60
}
},
angularCli: {
environment: 'dev'
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
singleRun: false,
customLaunchers: CUSTOM_LAUNCHERS,
browsers: [
'Chrome'
]
});
};