We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af978a commit 14efe97Copy full SHA for 14efe97
__tests__/buildTS.spec.js
@@ -1,7 +1,11 @@
1
jest.setTimeout(600000)
2
3
+const sleep = t => new Promise(resolve => setTimeout(resolve, t))
4
+
5
const runTests = require('./build.helper.js').runTests
6
7
test('electron:build-ts', async () => {
8
+ // Prevent build/build-ts tests from overlapping
9
+ await sleep(2000)
10
await runTests(true)
11
})
0 commit comments