Skip to content

Commit f16f555

Browse files
committed
fmt
1 parent e70d2c9 commit f16f555

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/core/test/lib/integrations/third-party-errors-filter.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -683,10 +683,7 @@ describe('ThirdPartyErrorFilter', () => {
683683
const longFilename = 'https://example.com/_next/static/chunks/' + 'a'.repeat(200) + '.js';
684684

685685
// Simulate a module metadata entry with a realistic stack containing a long filename
686-
const fakeStack = [
687-
`Error: Sentry Module Metadata`,
688-
` at Object.<anonymous> (${longFilename}:1:1)`,
689-
].join('\n');
686+
const fakeStack = [`Error: Sentry Module Metadata`, ` at Object.<anonymous> (${longFilename}:1:1)`].join('\n');
690687
GLOBAL_OBJ._sentryModuleMetadata![fakeStack] = { '_sentryBundlerPluginAppKey:long-url-key': true };
691688

692689
const event: Event = {

0 commit comments

Comments
 (0)