fix(rpc-test): use .js extension for recovery module import

tsgo rejects `.ts` extensions in imports without allowImportingTsExtensions.
Updated the test to import from "./feedback-queue-recovery.js" which is
both ESM-compatible and matches the rest of the package convention.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mikael Hugo 2026-05-17 22:30:10 +02:00
parent d54f18c95f
commit 68178a9260

View file

@ -18,7 +18,7 @@ import {
import { tmpdir } from "node:os";
import { join } from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { recoverOrphanedFeedbackDrains } from "./feedback-queue-recovery.ts";
import { recoverOrphanedFeedbackDrains } from "./feedback-queue-recovery.js";
const QUEUE_NAME = "sf-feedback-queue.jsonl";
const tmpRoots: string[] = [];