chore(cli): increase timeout in test

This commit is contained in:
Nathan Bierema 2021-09-19 19:59:43 -04:00
parent f454ac8a7f
commit ce25738306

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, 5000));
});
afterAll(function () {