mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
test: make integration::workers::workers test inspectable (#11524)
This commit is contained in:
parent
a05bb3924a
commit
f47c550100
2 changed files with 8 additions and 20 deletions
|
@ -1,27 +1,12 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
use crate::itest;
|
||||
use test_util as util;
|
||||
|
||||
#[test]
|
||||
fn workers() {
|
||||
let _g = util::http_server();
|
||||
let status = util::deno_cmd()
|
||||
.current_dir(util::tests_path())
|
||||
.arg("test")
|
||||
.arg("--reload")
|
||||
.arg("--location")
|
||||
.arg("http://127.0.0.1:4545/cli/tests/")
|
||||
.arg("--allow-net")
|
||||
.arg("--allow-read")
|
||||
.arg("--unstable")
|
||||
.arg("workers/test.ts")
|
||||
.spawn()
|
||||
.unwrap()
|
||||
.wait()
|
||||
.unwrap();
|
||||
assert!(status.success());
|
||||
}
|
||||
itest!(workers {
|
||||
args: "test --reload --location http://127.0.0.1:4545/cli/tests/ --allow-net --allow-read --unstable workers/test.ts",
|
||||
output: "workers/test.ts.out",
|
||||
http_server: true,
|
||||
});
|
||||
|
||||
itest!(worker_error {
|
||||
args: "run -A workers/worker_error.ts",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue