mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
chore: fix flaky integration::test::pass test (#14571)
This commit is contained in:
parent
e6d8775611
commit
e6142fafba
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…
Reference in New Issue
Block a user