Skip to content

Commit 9155be6

Browse files
committed
test: fix imports
1 parent 9eda31d commit 9155be6

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
@@ -4,7 +4,7 @@ import { join } from "node:path";
44
import jscodeshift from "jscodeshift";
55
import { describe, expect, it } from "vitest";
66

7-
import transform from "./transformer/index.ts";
7+
import transform from "./transformer.ts";
88

99
describe("v2-to-v3", () => {
1010
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,6 +1,6 @@
11
import { describe, expect, it } from "vitest";
22

3-
import { isTypeScriptFile } from "./isTypeScriptFile/index.ts";
3+
import { isTypeScriptFile } from "./isTypeScriptFile.ts";
44

55
describe(isTypeScriptFile.name, () => {
66
it.each([

0 commit comments

Comments
 (0)