forked from bubkoo/html-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
69 lines (66 loc) · 1.67 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
const { join } = require('path')
module.exports = function (config) {
const configuration = {
frameworks: ['jasmine', 'karma-typescript'],
files: [
{
pattern: 'test/spec/resources/**/*',
included: false,
served: true,
},
{
pattern: 'node_modules/@fortawesome/fontawesome-free/css/*.*',
included: false,
served: true,
},
{
pattern: 'node_modules/@fortawesome/fontawesome-free/webfonts/*.*',
included: false,
served: true,
},
'node_modules/imagediff/imagediff.js',
'src/**/*.ts',
'test/spec/**/*.ts',
],
preprocessors: {
'src/**/*.ts': ['karma-typescript'],
'test/spec/**/*.ts': ['karma-typescript'],
},
reporters: ['spec', 'karma-typescript'],
browsers: ['Chrome'],
karmaTypescriptConfig: {
tsconfig: './tsconfig.json',
include: ['src/**/*.ts', 'test/spec/**/*.ts'],
bundlerOptions: { sourceMap: true },
coverageOptions: {
instrumentation: true,
exclude: /test\/spec\/.*\.ts$/,
},
reports: {
html: 'test/coverage',
lcovonly: {
directory: 'test/coverage',
filename: 'lcov.info',
subdirectory: './',
},
'text-summary': '',
},
},
customLaunchers: {
ChromeTravisCI: {
base: 'Chrome',
flags: ['--no-sandbox'],
},
},
client: { jasmine: { random: false } },
port: 9876,
colors: true,
autoWatch: true,
singleRun: true,
concurrency: Infinity,
}
if (process.env.TRAVIS) {
configuration.browsers = ['ChromeTravisCI']
}
config.set(configuration)
}