diff options
-rw-r--r-- | cli/tests/integration/run_tests.rs | 9 | ||||
-rw-r--r-- | cli/tests/testdata/run/single_compile_with_reload.ts | 4 | ||||
-rw-r--r-- | cli/tests/testdata/run/single_compile_with_reload.ts.out | 2 |
3 files changed, 6 insertions, 9 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index b29f735c4..4a0581b84 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1552,11 +1552,10 @@ itest!(jsx_import_source_error { exit_code: 1, }); -// TODO(#11128): Flaky. Re-enable later. -// itest!(single_compile_with_reload { -// args: "run --relcert/oad --allow-read run/single_compile_with_reload.ts", -// output: "run/single_compile_with_reload.ts.out", -// }); +itest!(single_compile_with_reload { + args: "run --reload --allow-read run/single_compile_with_reload.ts", + output: "run/single_compile_with_reload.ts.out", +}); itest!(proto_exploit { args: "run run/proto_exploit.js", diff --git a/cli/tests/testdata/run/single_compile_with_reload.ts b/cli/tests/testdata/run/single_compile_with_reload.ts index ea6a73474..9478ad523 100644 --- a/cli/tests/testdata/run/single_compile_with_reload.ts +++ b/cli/tests/testdata/run/single_compile_with_reload.ts @@ -4,14 +4,14 @@ await import("./single_compile_with_reload_dyn.ts"); console.log("2"); await new Promise((r) => new Worker( - import.meta.resolve("single_compile_with_reload_worker.ts"), + import.meta.resolve("./single_compile_with_reload_worker.ts"), { type: "module" }, ).onmessage = r ); console.log("3"); await new Promise((r) => new Worker( - import.meta.resolve("single_compile_with_reload_worker.ts"), + import.meta.resolve("./single_compile_with_reload_worker.ts"), { type: "module" }, ).onmessage = r ); diff --git a/cli/tests/testdata/run/single_compile_with_reload.ts.out b/cli/tests/testdata/run/single_compile_with_reload.ts.out index b0b2fcaf1..a3986e3af 100644 --- a/cli/tests/testdata/run/single_compile_with_reload.ts.out +++ b/cli/tests/testdata/run/single_compile_with_reload.ts.out @@ -1,8 +1,6 @@ -Check [WILDCARD]single_compile_with_reload.ts Hello 1 2 -Check [WILDCARD]single_compile_with_reload_worker.ts Hello from worker 3 Hello from worker |