diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-22 02:16:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 02:16:24 +0100 |
commit | 5c7dc904fb78cbf2d9e4707a9172a9291a55f8ab (patch) | |
tree | 75ab03ac3d97743990d782b07a170548c1f99a27 /cli/tests/unit/command_test.ts | |
parent | 4b07c7b159e9fbf956ef1adf9c952ee4347bc5cb (diff) |
test: disable commandChildUnref flaky test (#16752)
Diffstat (limited to 'cli/tests/unit/command_test.ts')
-rw-r--r-- | cli/tests/unit/command_test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tests/unit/command_test.ts b/cli/tests/unit/command_test.ts index e49cdc46c..0b8aa934b 100644 --- a/cli/tests/unit/command_test.ts +++ b/cli/tests/unit/command_test.ts @@ -724,10 +724,9 @@ Deno.test(function spawnSyncStdinPipedFails() { }); Deno.test( - // TODO(bartlomieju): this test became flaky on Windows CI - // raising "PermissionDenied" instead of "NotFound". + // FIXME(bartlomieju): this test is very flaky on CI, fix it { - ignore: Deno.build.os === "windows", + ignore: true, permissions: { write: true, run: true, read: true }, }, async function commandChildUnref() { |