[eric] tests: two suites imported a .js that never existed, so 13 assertions had never run once

This commit is contained in:
ciregenz
2026-08-07 16:06:57 -07:00
parent 9b0ca9f2fc
commit b37509894d
2 changed files with 2 additions and 2 deletions
@@ -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 [
@@ -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;