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 99e67f6 commit f63de45Copy full SHA for f63de45
test/build/cache/cache.test.js
@@ -2,7 +2,7 @@
2
3
const fs = require("node:fs");
4
const path = require("node:path");
5
-const { processKill, run, runWatch } = require("../../utils/test-utils");
+const { run, runWatch } = require("../../utils/test-utils");
6
7
describe("cache", () => {
8
it("should work", async () => {
@@ -241,7 +241,7 @@ describe("cache", () => {
241
stdout += data;
242
243
if (data.includes("app.bundle.js")) {
244
- processKill(proc);
+ proc.kill();
245
}
246
});
247
},
0 commit comments