Skip to content

Commit f5018b0

Browse files
committed
Fix failing build tests
1 parent 6cdcc62 commit f5018b0

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

tests/build_tests/exports/input.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import { setup } from "#dev/process";
44

55
const { execBuildOrThrow, execClean } = setup(import.meta.dirname);
66

7+
await execClean();
78
await execBuildOrThrow();
89
await execClean();

tests/build_tests/react_ppx/src/gpr_3695_test.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module React = {
22
type element
3-
type componentLike<'props, 'return> = 'props => 'return
3+
type component<'props> = 'props => element
44
}
55

66
module Test = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Js.Console.log("test")
1+
Console.log("test")

tests/build_tests/transitive_dependency/input.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import { existsSync } from "node:fs";
55
import * as path from "node:path";
66
import { setup } from "#dev/process";
77

8-
const { execBuildOrThrow, execClean } = setup(path.join(import.meta.dirname, "a"));
8+
const { execBuildOrThrow, execClean } = setup(
9+
path.join(import.meta.dirname, "a"),
10+
);
911
await execClean();
1012
await execBuildOrThrow();
1113

0 commit comments

Comments
 (0)