forked from Netflix/pollyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem.js
53 lines (52 loc) · 1.32 KB
/
testem.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
/* eslint-env node */
const attachMiddleware = require('./tests/middleware');
module.exports = {
port: 4000,
fail_on_zero_tests: true,
test_page: 'tests/index.mustache',
launch_in_ci: ['Chrome', 'Node', 'Jest', 'Ember', 'ESLint'],
launch_in_dev: ['Chrome', 'Node', 'Jest', 'Ember', 'ESLint'],
watch_files: [
'./scripts/rollup/*',
'./packages/@pollyjs/*/build/**/*',
'./packages/@pollyjs/*/dist/**/*'
],
serve_files: ['./packages/@pollyjs/*/build/browser/*.js'],
browser_args: {
Chrome: {
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
}
},
middleware: [attachMiddleware],
launchers: {
'Node:debug': {
command: 'mocha --inspect-brk'
},
Node: {
command: 'mocha --reporter tap',
protocol: 'tap'
},
Jest: {
command: 'jest',
protocol: 'tap'
},
Ember: {
command: 'yarn workspace @pollyjs/ember run test',
protocol: 'tap'
},
ESLint: {
command: 'yarn lint --format tap',
protocol: 'tap'
}
}
};