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 6beda60 commit 779720cCopy full SHA for 779720c
test/sequential.js
@@ -13,6 +13,7 @@ const assert = require("power-assert")
13
const nodeApi = require("../lib")
14
const spawnWithKill = require("./lib/spawn-with-kill")
15
const util = require("./lib/util")
16
+const delay = util.delay
17
const result = util.result
18
const removeResult = util.removeResult
19
const runAll = util.runAll
@@ -26,7 +27,7 @@ describe("[sequencial] npm-run-all", () => {
26
27
before(() => process.chdir("test-workspace"))
28
after(() => process.chdir(".."))
29
- beforeEach(removeResult)
30
+ beforeEach(() => delay(1000).then(removeResult))
31
32
describe("should run tasks sequentially:", () => {
33
it("Node API", () =>
0 commit comments