forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestConfigOverrides_spec.ts
More file actions
74 lines (64 loc) · 1.98 KB
/
Copy pathtestConfigOverrides_spec.ts
File metadata and controls
74 lines (64 loc) · 1.98 KB
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
import fs from 'fs-extra'
import path from 'path'
import systemTests, { expect } from '../lib/system-tests'
import Fixtures from '../lib/fixtures'
const e2ePath = Fixtures.projectPath('e2e')
const outputPath = path.join(e2ePath, 'output.json')
describe('testConfigOverrides', () => {
systemTests.setup()
systemTests.it('fails when passing invalid config value browser', {
spec: 'testConfigOverrides-invalid-browser.js',
snapshot: true,
expectedExitCode: 1,
config: {
video: false,
},
})
systemTests.it('has originalTitle when skip due to browser config', {
spec: 'testConfigOverrides-skip-browser.js',
snapshot: true,
outputPath,
browser: 'electron',
async onRun (exec) {
await exec()
const results = await fs.readJson(outputPath)
// make sure we've respected test.originalTitle
expect(results.runs[0].tests[0].title).deep.eq(['suite', 'has invalid testConfigOverrides'])
},
})
// window.Error throws differently for firefox. break into
// browser permutations for snapshot comparisons
const permutations = [
['chrome', 'electron'],
['firefox'],
]
permutations.forEach((browserList) => {
systemTests.it(`fails when passing invalid config values - [${browserList}]`, {
spec: 'testConfigOverrides-invalid.js',
snapshot: true,
browser: browserList,
expectedExitCode: 8,
config: {
video: false,
},
})
systemTests.it(`fails when passing invalid config values with beforeEach - [${browserList}]`, {
spec: 'testConfigOverrides-before-invalid.js',
snapshot: true,
browser: browserList,
expectedExitCode: 8,
config: {
video: false,
},
})
systemTests.it(`correctly fails when invalid config values for it.only [${browserList}]`, {
spec: 'testConfigOverrides-only-invalid.js',
snapshot: true,
browser: browserList,
expectedExitCode: 1,
config: {
video: false,
},
})
})
})