Skip to content

Commit 86814ce

Browse files
authored
Use more rewatch in build_tests (#8174)
1 parent 23ae897 commit 86814ce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/build_tests/exports/input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
import { setup } from "#dev/process";
44

5-
const { execBuildLegacy } = setup(import.meta.dirname);
5+
const { execBuild } = setup(import.meta.dirname);
66

7-
await execBuildLegacy();
7+
await execBuild();

tests/build_tests/x-y/input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
import { setup } from "#dev/process";
44

5-
const { execBuildLegacy } = setup(import.meta.dirname);
5+
const { execBuild } = setup(import.meta.dirname);
66

7-
await execBuildLegacy();
7+
await execBuild();

tests/build_tests/zerocycle/input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
import * as assert from "node:assert";
44
import { setup } from "#dev/process";
55

6-
const { execBuildLegacy } = setup(import.meta.dirname);
7-
const output = await execBuildLegacy();
6+
const { execBuild } = setup(import.meta.dirname);
7+
const output = await execBuild();
88
assert.ok(output.status === 0);

0 commit comments

Comments
 (0)