mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
Fix
This commit is contained in:
parent
4941077b53
commit
96912df38f
|
@ -4,9 +4,9 @@ import scClient from 'socketcluster-client';
|
||||||
|
|
||||||
describe('Server', function () {
|
describe('Server', function () {
|
||||||
let scServer: childProcess.ChildProcess;
|
let scServer: childProcess.ChildProcess;
|
||||||
beforeAll(function (done) {
|
beforeAll(async function () {
|
||||||
scServer = childProcess.fork(__dirname + '/../bin/redux-devtools.js');
|
scServer = childProcess.fork(__dirname + '/../bin/redux-devtools.js');
|
||||||
setTimeout(done, 3000);
|
await new Promise((resolve) => setTimeout(resolve, 3000));
|
||||||
});
|
});
|
||||||
|
|
||||||
afterAll(function () {
|
afterAll(function () {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user