diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-01 13:32:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 13:32:41 +0100 |
commit | 53fa45eb73774bf4a7bd04ef4eb1ac59fd3e0dd7 (patch) | |
tree | 92388b8b48a698da3b7a0e860e76172224d36a76 /cli/tests/integration_tests.rs | |
parent | 83efdeedff3cba0615dbf5ba888b4ff01562bae6 (diff) |
disable flaky watch tests (#8557)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 02a3ac2ce..f80838011 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -517,6 +517,7 @@ fn skip_restarting_line( } #[test] +#[ignore] fn fmt_watch_test() { let t = TempDir::new().expect("tempdir fail"); let fixed = util::root_path().join("cli/tests/badly_formatted_fixed.js"); @@ -1264,6 +1265,7 @@ fn bundle_import_map_no_check() { } #[test] +#[ignore] fn bundle_js_watch() { use std::path::PathBuf; // Test strategy extends this of test bundle_js by adding watcher @@ -1333,6 +1335,7 @@ fn bundle_js_watch() { /// Confirm that the watcher continues to work even if module resolution fails at the *first* attempt #[test] +#[ignore] fn bundle_watch_not_exit() { let t = TempDir::new().expect("tempdir fail"); let file_to_watch = t.path().join("file_to_watch.js"); @@ -1432,6 +1435,7 @@ fn wait_for_process_finished( } #[test] +#[ignore] fn run_watch() { let t = TempDir::new().expect("tempdir fail"); let file_to_watch = t.path().join("file_to_watch.js"); @@ -1523,6 +1527,7 @@ fn run_watch() { /// Confirm that the watcher continues to work even if module resolution fails at the *first* attempt #[test] +#[ignore] fn run_watch_not_exit() { let t = TempDir::new().expect("tempdir fail"); let file_to_watch = t.path().join("file_to_watch.js"); @@ -1641,6 +1646,7 @@ fn repl_test_pty_unpaired_braces() { } #[test] +#[ignore] fn run_watch_with_importmap_and_relative_paths() { fn create_relative_tmp_file( directory: &TempDir, |