mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
chore: fix flaky integration::test::pass test (#14571)
This commit is contained in:
parent
e6d8775611
commit
e6142fafba
2 changed files with 7 additions and 3 deletions
5
cli/tests/testdata/test/pass.out
vendored
5
cli/tests/testdata/test/pass.out
vendored
|
@ -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])
|
||||
|
|
5
cli/tests/testdata/test/pass.ts
vendored
5
cli/tests/testdata/test/pass.ts
vendored
|
@ -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");
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue