Skip to content

Commit a315eca

Browse files
author
Sashko Stubailo
committed
Fix test and parse stack
1 parent ff79737 commit a315eca

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

tools/tests/apps/once/.meteor/packages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55

66
meteor-base
77
standard-minifiers
8+
mongo

tools/utils/parse-stack.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export function parse(err) {
3030

3131
if (indexOfFiberSplit === -1) {
3232
// This is a normal stack trace, not a split fiber stack trace
33-
return parseStackFrames(frames);
33+
return {
34+
outsideFiber: parseStackFrames(frames)
35+
}
3436
}
3537

3638
// If this is a split stack trace from a future, parse the frames above and

0 commit comments

Comments
 (0)