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:
parent
d54f18c95f
commit
68178a9260
1 changed files with 1 additions and 1 deletions
|
|
@ -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[] = [];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue