From b37509894dde667953e47f237e4d66f5e25514ee Mon Sep 17 00:00:00 2001 From: ciregenz Date: Fri, 7 Aug 2026 16:06:57 -0700 Subject: [PATCH] [eric] tests: two suites imported a .js that never existed, so 13 assertions had never run once --- frontend/src/app/pages/AgentChat/parsing/isNarration.test.ts | 2 +- frontend/src/app/pages/Dashboard/canvas/revealZoom.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/pages/AgentChat/parsing/isNarration.test.ts b/frontend/src/app/pages/AgentChat/parsing/isNarration.test.ts index dcb807d4..ec5b1ac2 100644 --- a/frontend/src/app/pages/AgentChat/parsing/isNarration.test.ts +++ b/frontend/src/app/pages/AgentChat/parsing/isNarration.test.ts @@ -11,7 +11,7 @@ import { test } from 'node:test'; import assert from 'node:assert/strict'; -import { isNarration } from './isNarration.js'; +import { isNarration } from './isNarration.ts'; test('short passing remarks are narration', () => { for (const s of [ diff --git a/frontend/src/app/pages/Dashboard/canvas/revealZoom.test.ts b/frontend/src/app/pages/Dashboard/canvas/revealZoom.test.ts index 8627671d..98099eda 100644 --- a/frontend/src/app/pages/Dashboard/canvas/revealZoom.test.ts +++ b/frontend/src/app/pages/Dashboard/canvas/revealZoom.test.ts @@ -1,7 +1,7 @@ // Run: cd frontend && npx tsx --test src/app/pages/Dashboard/canvas/revealZoom.test.ts import { test } from 'node:test'; import assert from 'node:assert/strict'; -import { revealZoom, REVEAL_MIN_ZOOM } from './revealZoom.js'; +import { revealZoom, REVEAL_MIN_ZOOM } from './revealZoom.ts'; const MIN = 0.15, MAX = 3.0;