diff options
Diffstat (limited to 'tests/integration/watcher_tests.rs')
-rw-r--r-- | tests/integration/watcher_tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/integration/watcher_tests.rs b/tests/integration/watcher_tests.rs index bb757eb35..3cec2f442 100644 --- a/tests/integration/watcher_tests.rs +++ b/tests/integration/watcher_tests.rs @@ -1675,7 +1675,7 @@ console.log("Listening...") let mut child = util::deno_cmd() .current_dir(t.path()) .arg("run") - .arg("--unstable-hmr") + .arg("--watch-hmr") .arg("--allow-net") .arg("-L") .arg("debug") @@ -1748,7 +1748,7 @@ export function foo() { let mut child = util::deno_cmd() .current_dir(t.path()) .arg("run") - .arg("--unstable-hmr") + .arg("--watch-hmr") .arg("-L") .arg("debug") .arg(&file_to_watch) @@ -1806,7 +1806,7 @@ export function foo() { let mut child = util::deno_cmd() .current_dir(t.path()) .arg("run") - .arg("--unstable-hmr") + .arg("--watch-hmr") .arg("-L") .arg("debug") .arg(&file_to_watch) @@ -1871,7 +1871,7 @@ export function foo() { let mut child = util::deno_cmd() .current_dir(t.path()) .arg("run") - .arg("--unstable-hmr") + .arg("--watch-hmr") .arg("-L") .arg("debug") .arg(&file_to_watch) |