chore(cli): increase timeout in test (#873)

This commit is contained in:
Nathan Bierema 2021-09-19 20:56:48 -04:00 committed by GitHub
parent f23b14cdf0
commit 3c28250668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ describe('Server', function () {
let scServer: childProcess.ChildProcess;
beforeAll(async function () {
scServer = childProcess.fork(__dirname + '/../bin/redux-devtools.js');
await new Promise((resolve) => setTimeout(resolve, 3000));
await new Promise((resolve) => setTimeout(resolve, 4000));
});
afterAll(function () {