From fda3c1eef16426fc7ae09ef8f5ad442f3918a451 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Fri, 21 Jun 2024 22:20:26 -0700 Subject: [PATCH] Fix error source maps test --- apps/tests/src/error.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tests/src/error.test.ts b/apps/tests/src/error.test.ts index 16d95b51..d3d9e906 100644 --- a/apps/tests/src/error.test.ts +++ b/apps/tests/src/error.test.ts @@ -5,7 +5,7 @@ const test = suite('Error'); test('`Error#stack` include source maps', () => { const err = new Error('bad'); - assert.equal(err.stack?.includes('(app:../src/error.ts:'), true); + assert.equal(err.stack?.includes('(app:../src/error.test.ts:'), true); }); test.run();