diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-27 09:59:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 09:59:34 -0400 |
commit | 4036be2ab2db0c5f146d1c4246e6d5acb337f9ec (patch) | |
tree | c23c0754e453dc9ce5aa6e53d4b196f3e06413b1 /cli/tests | |
parent | 1f52d180c08b5fc060ecf9d24e4d7f31377479b7 (diff) |
Make runtime compile ops unstable (#4912)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index ae905840d..7ba296944 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -986,7 +986,7 @@ itest!(workers { }); itest!(compiler_api { - args: "test --reload compiler_api_test.ts", + args: "test --unstable --reload compiler_api_test.ts", output: "compiler_api_test.out", }); @@ -1468,12 +1468,12 @@ itest!(import_meta { }); itest!(lib_ref { - args: "run --reload lib_ref.ts", + args: "run --unstable --reload lib_ref.ts", output: "lib_ref.ts.out", }); itest!(lib_runtime_api { - args: "run --reload lib_runtime_api.ts", + args: "run --unstable --reload lib_runtime_api.ts", output: "lib_runtime_api.ts.out", }); |