Skip to content

Commit 3f871a1

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

3 files changed

Lines changed: 3 additions & 2 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")

0 commit comments

Comments
 (0)