diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-11-13 12:48:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-13 12:48:17 -0500 |
commit | 279191ad9447c66fe1278589a7be242d035bb68b (patch) | |
tree | c269253e12bfbbf66421ee40860923e54bf5616e /cli/tests/integration_tests.rs | |
parent | 80b137154880dc94a12f079ada14461ad849f720 (diff) |
Disable flaky tests lock_check_ok2 and lock_check_err2 (#3331)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index b5b927172..b8dab2de8 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -362,11 +362,13 @@ itest!(lock_check_ok { http_server: true, }); +/* TODO(ry) Re-enable this test. It is flaky and only fails occasionally. itest!(lock_check_ok2 { args: "run 019_media_types.ts --lock=lock_check_ok2.json", output: "019_media_types.ts.out", http_server: true, }); +*/ itest!(lock_check_err { args: "run --lock=lock_check_err.json http://127.0.0.1:4545/cli/tests/003_relative_import.ts", @@ -376,6 +378,7 @@ itest!(lock_check_err { http_server: true, }); +/* TODO(ry) Re-enable this test. It is flaky and only fails occasionally. itest!(lock_check_err2 { args: "run 019_media_types.ts --lock=lock_check_err2.json", output: "lock_check_err2.out", @@ -383,6 +386,7 @@ itest!(lock_check_err2 { exit_code: 10, http_server: true, }); +*/ itest!(async_error { exit_code: 1, |