Skip to content

Commit adfe1b1

Browse files
committed
test(e2e): update e2e timeout
1 parent 5e29b3a commit adfe1b1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

e2e/jest-puppeteer.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// jest-puppeteer.config.js
22
module.exports = {
33
launch: {
4-
headless: false
4+
headless: false,
5+
product: 'chrome'
56
},
6-
browser: 'chromium',
77
browserContext: 'default',
88
server: {
99
command: './node_modules/ts-node/dist/bin.js e2e/server.ts',
1010
port: 9898,
11-
launchTimeout: 10000,
11+
launchTimeout: 50000,
1212
debug: true
1313
}
1414
};

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
// "composite": true, /* Enable project compilation */
1818
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
1919
"removeComments": true, /* Do not emit comments to output. */
20+
"types": ["node"],
2021
// "noEmit": true, /* Do not emit outputs. */
2122
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
2223
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */

0 commit comments

Comments
 (0)