Skip to content

Commit 2af2131

Browse files
Copilotkobenguyent
andcommitted
Restore missing codecept.multiple.js file from test/data/sandbox
Co-authored-by: kobenguyent <7845001+kobenguyent@users.noreply.github.com>
1 parent 8c0259e commit 2af2131

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
exports.config = {
2+
tests: './*_test.multiple.js',
3+
timeout: 10000,
4+
output: './output',
5+
helpers: {
6+
FakeDriver: {
7+
require: '../fake_driver',
8+
browser: 'dummy',
9+
windowSize: 'maximize',
10+
},
11+
},
12+
13+
multiple: {
14+
default: {
15+
browsers: [
16+
'chrome',
17+
{ browser: 'firefox' },
18+
],
19+
},
20+
mobile: {
21+
browsers: [
22+
'android',
23+
{ browser: 'safari', windowSize: 'maximize' },
24+
{ browser: 'chrome', windowSize: 'maximize' },
25+
{ browser: 'safari', windowSize: '1200x840' },
26+
],
27+
},
28+
grep: {
29+
grep: '@grep',
30+
browsers: [
31+
'chrome',
32+
{ browser: 'firefox', windowSize: '1200x840' },
33+
],
34+
},
35+
test: {
36+
tests: './*_test_override.multiple.js',
37+
browsers: [
38+
'chrome',
39+
{ browser: 'firefox', windowSize: '1200x840' },
40+
],
41+
},
42+
chunks: {
43+
chunks: 2,
44+
},
45+
},
46+
include: {},
47+
bootstrap: false,
48+
mocha: {},
49+
name: 'sandbox',
50+
};

0 commit comments

Comments
 (0)