Skip to content

Commit 5ec09d7

Browse files
committed
Fix the lineno
1 parent 2dc38e6 commit 5ec09d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node/test/stacktrace.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('Stack parsing', () => {
3131
const last = frames.length - 1;
3232
expect(frames[last].filename).toEqual(__filename);
3333
expect(frames[last].function).toEqual('testBasic');
34-
expect(frames[last].lineno).toEqual(4);
34+
expect(frames[last].lineno).toEqual(15);
3535
expect(frames[last].colno).toEqual(10);
3636
});
3737

0 commit comments

Comments
 (0)