Skip to content

Commit 8cb32a4

Browse files
committed
Run yarn format
1 parent 0f76c44 commit 8cb32a4

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

packages/browser/test/eventbuilder.test.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,10 @@ describe('eventFromUnknownInput', () => {
211211

212212
const syntheticException = new Error('Test message');
213213
const event = await eventFromUnknownInput(defaultStackParser, exception, syntheticException, false);
214-
expect(event.exception?.values?.[0]).toEqual(
215-
{
216-
type: 'Error',
217-
value: 'SyntaxError: The string did not match the expected pattern.',
218-
},
219-
);
214+
expect(event.exception?.values?.[0]).toEqual({
215+
type: 'Error',
216+
value: 'SyntaxError: The string did not match the expected pattern.',
217+
});
220218
});
221219

222220
it("doesn't add a synthetic stack trace to DOMException with stack traces if attachStacktrace is true", async () => {
@@ -231,8 +229,8 @@ describe('eventFromUnknownInput', () => {
231229
frames: [
232230
{
233231
colno: 2,
234-
filename: "<anonymous>",
235-
function: "?",
232+
filename: '<anonymous>',
233+
function: '?',
236234
in_app: true,
237235
lineno: 1,
238236
},

0 commit comments

Comments
 (0)