diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-05-11 18:05:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-11 18:05:54 -0400 |
commit | e6142fafbabd9f39882ef17ed7e353d7b80927e2 (patch) | |
tree | 025b8d164c2a27c0e03422bf0aadca61e6a9070d /cli/tests/testdata/test/pass.ts | |
parent | e6d8775611c950d42f87339dea36f6b241707050 (diff) |
chore: fix flaky integration::test::pass test (#14571)
Diffstat (limited to 'cli/tests/testdata/test/pass.ts')
-rw-r--r-- | cli/tests/testdata/test/pass.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/testdata/test/pass.ts b/cli/tests/testdata/test/pass.ts index b41f58e45..f72123584 100644 --- a/cli/tests/testdata/test/pass.ts +++ b/cli/tests/testdata/test/pass.ts @@ -6,8 +6,9 @@ Deno.test("test 4", () => {}); Deno.test("test 5", () => {}); Deno.test("test 6", () => {}); Deno.test("test 7", () => {}); -Deno.test("test 8", () => {}); -Deno.test("test 9", () => { +Deno.test("test 8", () => { console.log("console.log"); +}); +Deno.test("test 9", () => { console.error("console.error"); }); |