Skip to content

Commit 53bcc9b

Browse files
committed
test: fix imports
1 parent e8bd3d4 commit 53bcc9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/transforms/v2-to-v3/transformer.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { join } from "node:path";
55
import { describe, it } from "node:test";
66
import jscodeshift from "jscodeshift";
77

8-
import transform from "./transformer/index.ts";
8+
import transform from "./transformer.ts";
99

1010
describe("v2-to-v3", () => {
1111
const inputFileRegex = /(.*).input.[jt]sx?$/;

src/transforms/v2-to-v3/utils/isTypeScriptFile.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { strictEqual } from "node:assert";
22
import { describe, it } from "node:test";
33

4-
import { isTypeScriptFile } from "./isTypeScriptFile/index.ts";
4+
import { isTypeScriptFile } from "./isTypeScriptFile.ts";
55

66
describe(isTypeScriptFile.name, () => {
77
for (const [output, input] of [

0 commit comments

Comments
 (0)