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/mod.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/mod.ts')
-rw-r--r-- | cli/tests/testdata/lockfile/basic/mod.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/testdata/lockfile/basic/mod.ts b/cli/tests/testdata/lockfile/basic/mod.ts index 0f3785f91..358b4b09e 100644 --- a/cli/tests/testdata/lockfile/basic/mod.ts +++ b/cli/tests/testdata/lockfile/basic/mod.ts @@ -1 +1,3 @@ -console.log(5); +export function getValue() { + return 5; +} |