Skip to content

Commit

Permalink
chore: update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev authored Aug 5, 2024
1 parent eca9b74 commit ce517aa
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions test/cli/test/__snapshots__/list.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`basic output shows error 1`] = `
"Error: top level error
❯ top-level-error.test.ts:1:7
1| throw new Error('top level error')
| ^
2|
Error: describe error
"Error: describe error
❯ describe-error.test.ts:4:9
2|
3| describe('describe error', () => {
Expand All @@ -16,6 +10,12 @@ Error: describe error
5|
6| it('wont run', () => {
Error: top level error
top-level-error.test.ts:1:7
1| throw new Error('top level error')
| ^
2|
"
`;
Expand Down Expand Up @@ -60,13 +60,7 @@ math.test.ts > failing test
`;
exports[`json output shows error 1`] = `
"Error: top level error
❯ top-level-error.test.ts:1:7
1| throw new Error('top level error')
| ^
2|
Error: describe error
"Error: describe error
❯ describe-error.test.ts:4:9
2|
3| describe('describe error', () => {
Expand All @@ -75,17 +69,17 @@ Error: describe error
5|
6| it('wont run', () => {
"
`;
exports[`json with a file output shows error 1`] = `
"Error: top level error
Error: top level error
top-level-error.test.ts:1:7
1| throw new Error('top level error')
| ^
2|
Error: describe error
"
`;
exports[`json with a file output shows error 1`] = `
"Error: describe error
❯ describe-error.test.ts:4:9
2|
3| describe('describe error', () => {
Expand All @@ -94,5 +88,11 @@ Error: describe error
5|
6| it('wont run', () => {
Error: top level error
top-level-error.test.ts:1:7
1| throw new Error('top level error')
| ^
2|
"
`;

0 comments on commit ce517aa

Please sign in to comment.