chore: fix flaky integration::test::pass test (#14571)

This commit is contained in:
David Sherret 2022-05-11 18:05:54 -04:00 committed by GitHub
parent e6d8775611
commit e6142fafba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -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])

View File

@ -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");
});