Skip to content

Commit f14b365

Browse files
committed
Manually fix snapshots
1 parent 78ab08a commit f14b365

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/__tests__/get-user-code-frame.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ test('it returns only user code frame when code frames from node_modules are fir
3939
const userTrace = getUserCodeFrame(stack)
4040

4141
expect(userTrace).toMatchInlineSnapshot(`
42-
"/sample-error/error-example.js:7:14
42+
/sample-error/error-example.js:7:14
4343
5 | document.createTextNode('Hello world')
4444
6 | )
4545
> 7 | screen.debug()
4646
| ^
47-
"
47+
4848
`)
4949
})
5050

@@ -59,12 +59,12 @@ test('it returns only user code frame when node code frames are present afterwar
5959
const userTrace = getUserCodeFrame()
6060

6161
expect(userTrace).toMatchInlineSnapshot(`
62-
"/sample-error/error-example.js:7:14
62+
/sample-error/error-example.js:7:14
6363
5 | document.createTextNode('Hello world')
6464
6 | )
6565
> 7 | screen.debug()
6666
| ^
67-
"
67+
6868
`)
6969
})
7070

0 commit comments

Comments
 (0)