Skip to content

Commit

Permalink
chore: fix flaky integration::test::pass test (denoland#14571)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed May 11, 2022
1 parent e6d8775 commit e6142fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion cli/tests/testdata/test/pass.out
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ test 4 ... ok ([WILDCARD])
test 5 ... ok ([WILDCARD])
test 6 ... ok ([WILDCARD])
test 7 ... ok ([WILDCARD])
test 8 ...
------- output -------
console.log
----- output end -----
test 8 ... ok ([WILDCARD])
test 9 ...
------- output -------
console.log
console.error
----- output end -----
test 9 ... ok ([WILDCARD])
Expand Down
5 changes: 3 additions & 2 deletions cli/tests/testdata/test/pass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
});

0 comments on commit e6142fa

Please sign in to comment.