Skip to content

Commit b14a9da

Browse files
authored
fix: fix electron timeout and renderer console.assert (#685)
1 parent 6bb5b18 commit b14a9da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"cors": "^2.8.5",
7575
"cosmiconfig": "^7.0.0",
7676
"dirty-chai": "^2.0.1",
77-
"electron-mocha": "^9.3.2",
77+
"electron-mocha": "9.3.0",
7878
"eslint": "^7.11.0",
7979
"eslint-config-ipfs": "^0.1.0",
8080
"execa": "^4.1.0",

src/test/electron.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = (argv) => {
1313
const invert = argv.invert ? ['--invert'] : []
1414
const progress = argv.progress ? ['--reporter=progress'] : []
1515
const bail = argv.bail ? ['--bail', argv.bail] : []
16-
const timeout = argv.timeout ? ['--timeout', argv.bail] : []
16+
const timeout = argv.timeout ? ['--timeout', argv.timeout] : []
1717
const renderer = argv.renderer ? ['--renderer'] : []
1818
const ts = argv.ts ? ['--require', fromAegir('src/config/register.js')] : []
1919

0 commit comments

Comments
 (0)