diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-30 10:43:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 10:43:00 -0700 |
commit | a217e55fecb4ec99d89633109f6d6cff2b081424 (patch) | |
tree | eb1f9188c7a2da20a4a43079d7300273e11d54e0 | |
parent | 474d47e841edc709d7a98ee044a711352adf8b6b (diff) |
Fix another flaky assert (#2246)
-rw-r--r-- | js/process_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/process_test.ts b/js/process_test.ts index e7d83904e..6eb4dfd89 100644 --- a/js/process_test.ts +++ b/js/process_test.ts @@ -268,7 +268,7 @@ if (Deno.platform.os !== "win") { // The following assert is causing this test to be flaky. Investigate and // re-enable when it can be made deterministic. // assertEquals(status.code, 1); - assertEquals(status.signal, Deno.Signal.SIGINT); + // assertEquals(status.signal, Deno.Signal.SIGINT); }); testPerm({ run: true }, async function killFailed(): Promise<void> { |