diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-28 14:16:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-28 14:16:37 -0700 |
commit | 73be183864d0983821e683198d9a6ea9008f070a (patch) | |
tree | f5591c4549cde957d80b7f220249b231326a4d81 | |
parent | 1af02b405e99f40bfe76ca7dfb596e6de959106b (diff) |
Disable flaky assert in killSuccess (#2230)
-rw-r--r-- | js/process_test.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/process_test.ts b/js/process_test.ts index 8d266617a..e7d83904e 100644 --- a/js/process_test.ts +++ b/js/process_test.ts @@ -264,7 +264,10 @@ if (Deno.platform.os !== "win") { const status = await p.status(); assertEquals(status.success, false); - assertEquals(status.code, undefined); + // TODO(ry) On Linux, status.code is sometimes undefined and sometimes 1. + // 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); }); |