diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-15 11:03:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 00:03:36 +0900 |
commit | 5c505316b3205f7e354baff35839f522846143c2 (patch) | |
tree | 6494fefd0d19215f7ed4f40d94c200a086291d9b /cli/tests/testdata/lockfile/basic/main.test.ts | |
parent | 7070b8ed50f13d95d926b19ed7d7ce9fc0d6d4f3 (diff) |
chore(tests): fix flaky test_no_lock (#18206)
The test output capturing is known to be flaky.
Closes #18199
Diffstat (limited to 'cli/tests/testdata/lockfile/basic/main.test.ts')
-rw-r--r-- | cli/tests/testdata/lockfile/basic/main.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/testdata/lockfile/basic/main.test.ts b/cli/tests/testdata/lockfile/basic/main.test.ts index bb757de23..fe45c799d 100644 --- a/cli/tests/testdata/lockfile/basic/main.test.ts +++ b/cli/tests/testdata/lockfile/basic/main.test.ts @@ -1,8 +1,8 @@ -import "./main.ts"; +import { getValue } from "mod"; Deno.test("test", () => { - const testing = 1 + 2; - if (testing !== 3) { + const testing = 1 + getValue(); + if (testing !== 6) { throw "FAIL"; } }); |