diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-07 21:15:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 21:15:59 +0200 |
commit | aca21dad1ba576e2e8b81cfa5ac87d58c69f1de6 (patch) | |
tree | 15b657060b27cf48a9d4dc15fd3dd1464dd76a9d /cli/tests/integration_tests.rs | |
parent | 2b66b8a03e4f81cc158be40d07534f26fa762c2b (diff) |
BREAKING: make Worker.deno unstable (#5128)
This commit makes "Worker.deno" option unstable.
Added new manual entry "docs/runtime/workers.md".
Removed stale workers tests.
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index bbd437623..91adb7fe9 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -985,6 +985,7 @@ fn workers() { .arg("test") .arg("--reload") .arg("--allow-net") + .arg("--unstable") .arg("workers_test.ts") .spawn() .unwrap() @@ -1080,17 +1081,6 @@ itest!(_038_checkjs { output: "038_checkjs.js.out", }); -// TODO(bartlomieju): re-enable -itest_ignore!(_039_worker_deno_ns { - args: "run --reload 039_worker_deno_ns.ts", - output: "039_worker_deno_ns.ts.out", -}); - -itest_ignore!(_040_worker_blob { - args: "run --reload 040_worker_blob.ts", - output: "040_worker_blob.ts.out", -}); - itest!(_041_dyn_import_eval { args: "eval import('./subdir/mod4.js').then(console.log)", output: "041_dyn_import_eval.out", @@ -1471,14 +1461,6 @@ itest!(error_local_static_import_from_remote_js { output: "error_local_static_import_from_remote.js.out", }); -// TODO(bartlomieju) Re-enable -itest_ignore!(error_worker_dynamic { - args: "run --reload error_worker_dynamic.ts", - check_stderr: true, - exit_code: 1, - output: "error_worker_dynamic.ts.out", -}); - itest!(exit_error42 { exit_code: 42, args: "run --reload exit_error42.ts", |