diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-19 00:32:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 00:32:21 +0200 |
commit | edca01c35e7f3f76ec98dd912314db16995e2a4f (patch) | |
tree | bb6d5e3ce0a406648b19c6ea1388856738eecf19 /cli/tests/node_compat/common.ts | |
parent | b7e19134b8706b0497bdcd02c3f620f3d5b319b0 (diff) |
chore: disable flaky Node compat tests (#18760)
I'm not able to reproduce any of the failures from CI on my machine.
I'm going to disable these tests for now as they are holding us back.
Diffstat (limited to 'cli/tests/node_compat/common.ts')
-rw-r--r-- | cli/tests/node_compat/common.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/node_compat/common.ts b/cli/tests/node_compat/common.ts index e9cfe3191..1b9748f26 100644 --- a/cli/tests/node_compat/common.ts +++ b/cli/tests/node_compat/common.ts @@ -1,7 +1,7 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. import { partition } from "../../../test_util/std/collections/partition.ts"; import { join } from "../../../test_util/std/path/mod.ts"; - +import * as JSONC from "../../../test_util/std/encoding/jsonc.ts"; /** * The test suite matches the folders inside the `test` folder inside the * node repo @@ -26,9 +26,9 @@ interface Config { darwinIgnore: TestSuites; } -export const config: Config = JSON.parse( - await Deno.readTextFile(new URL("./config.json", import.meta.url)), -); +export const config: Config = JSONC.parse( + await Deno.readTextFile(new URL("./config.jsonc", import.meta.url)), +) as unknown as Config; export const ignoreList = Object.entries(config.ignore).reduce( (total: RegExp[], [suite, paths]) => { |