0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00

Enable inspector tests (#4628)

This commit is contained in:
Andres Villegas 2020-04-04 11:46:09 -07:00 committed by GitHub
parent 788a6abfd3
commit 2911fcc78d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2015,7 +2015,6 @@ fn extract_ws_url_from_stderr(
url::Url::parse(ws_url).unwrap() url::Url::parse(ws_url).unwrap()
} }
#[cfg(not(target_os = "linux"))] // TODO(ry) broken on github actions.
#[tokio::test] #[tokio::test]
async fn inspector_connect() { async fn inspector_connect() {
let script = deno::test_util::root_path() let script = deno::test_util::root_path()
@ -2122,7 +2121,6 @@ async fn inspector_break_on_first_line() {
child.kill().unwrap(); child.kill().unwrap();
} }
#[cfg(not(target_os = "linux"))] // TODO(ry) broken on github actions.
#[tokio::test] #[tokio::test]
async fn inspector_pause() { async fn inspector_pause() {
let script = deno::test_util::root_path() let script = deno::test_util::root_path()
@ -2182,7 +2180,6 @@ async fn inspector_pause() {
child.kill().unwrap(); child.kill().unwrap();
} }
#[cfg(not(target_os = "linux"))] // TODO(ry) broken on github actions.
#[tokio::test] #[tokio::test]
async fn inspector_port_collision() { async fn inspector_port_collision() {
let script = deno::test_util::root_path() let script = deno::test_util::root_path()