diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-05-05 00:15:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-05 01:15:54 +0200 |
| commit | ca134d25e1c281384a1a131c19d0574e7c8d30e8 (patch) | |
| tree | 90ffc4b39fc131f50eebab74c53c5b2b64eba32f /cli/tests/testdata/test/fail.out | |
| parent | 6a21fe745acf44fb32c294a34314abf58cc43c30 (diff) | |
feat(test): Show Deno.test() call locations for failures (#14484)
Diffstat (limited to 'cli/tests/testdata/test/fail.out')
| -rw-r--r-- | cli/tests/testdata/test/fail.out | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/cli/tests/testdata/test/fail.out b/cli/tests/testdata/test/fail.out index 696dee52b..f996487e1 100644 --- a/cli/tests/testdata/test/fail.out +++ b/cli/tests/testdata/test/fail.out @@ -13,79 +13,78 @@ test 9 ... FAILED ([WILDCARD]) failures: -./test/fail.ts > test 0 -Error +test 0 => ./test/fail.ts:1:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:2:9 -./test/fail.ts > test 1 -Error +test 1 => ./test/fail.ts:4:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:5:9 -./test/fail.ts > test 2 -Error +test 2 => ./test/fail.ts:7:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:8:9 -./test/fail.ts > test 3 -Error +test 3 => ./test/fail.ts:10:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:11:9 -./test/fail.ts > test 4 -Error +test 4 => ./test/fail.ts:13:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:14:9 -./test/fail.ts > test 5 -Error +test 5 => ./test/fail.ts:16:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:17:9 -./test/fail.ts > test 6 -Error +test 6 => ./test/fail.ts:19:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:20:9 -./test/fail.ts > test 7 -Error +test 7 => ./test/fail.ts:22:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:23:9 -./test/fail.ts > test 8 -Error +test 8 => ./test/fail.ts:25:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:26:9 -./test/fail.ts > test 9 -Error +test 9 => ./test/fail.ts:28:6 +error: Error throw new Error(); ^ at [WILDCARD]/test/fail.ts:29:9 failures: - ./test/fail.ts - test 0 - test 1 - test 2 - test 3 - test 4 - test 5 - test 6 - test 7 - test 8 - test 9 +test 0 => ./test/fail.ts:1:6 +test 1 => ./test/fail.ts:4:6 +test 2 => ./test/fail.ts:7:6 +test 3 => ./test/fail.ts:10:6 +test 4 => ./test/fail.ts:13:6 +test 5 => ./test/fail.ts:16:6 +test 6 => ./test/fail.ts:19:6 +test 7 => ./test/fail.ts:22:6 +test 8 => ./test/fail.ts:25:6 +test 9 => ./test/fail.ts:28:6 test result: FAILED. 0 passed; 10 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]) |
