Skip to content

Commit 2300983

Browse files
committed
test: Fixed error name on Edge
1 parent 5bbb0aa commit 2300983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/integration/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ describe('integration', function() {
313313
);
314314
assert.match(
315315
ravenData.exception.values[0].stacktrace.frames[0]['function'],
316-
/\?|global code/
316+
/\?|global code/i
317317
);
318318
}
319319
);
@@ -350,7 +350,7 @@ describe('integration', function() {
350350
);
351351
assert.match(
352352
ravenData.exception.values[0].stacktrace.frames[0]['function'],
353-
/\?|global code/
353+
/\?|global code/i
354354
);
355355
}
356356
);
@@ -384,7 +384,7 @@ describe('integration', function() {
384384
);
385385
assert.match(
386386
ravenData.exception.values[0].stacktrace.frames[0]['function'],
387-
/\?|global code/
387+
/\?|global code|throwRealError/i
388388
);
389389
}
390390
);

0 commit comments

Comments
 (0)