Skip to content

Commit b1fd5ab

Browse files
committed
test: change compiler related test module path
1 parent 0625e5d commit b1fd5ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/create-tailwind-type/src/generator/__tests__/generator.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ describe(
1010
// dependencies
1111
const compiler = new TailwindCompiler({
1212
cssRoot: `${__dirname}/__mocks__/tailwind.css`,
13-
base: "packages/create-tailwind-type/node_modules/tailwindcss",
14-
// base: "node_modules/tailwindcss",
13+
// base: "packages/create-tailwind-type/node_modules/tailwindcss",
14+
base: "node_modules/tailwindcss",
1515
})
1616
const cssAnalyzer = new CSSAnalyzer()
1717
const schemaGenerator = new TypeSchemaGenerator()

packages/create-tailwind-type/src/internal/compiler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ describe("TailwindCompiler - Internal", () => {
77
beforeAll(async () => {
88
compiler = new TailwindCompiler({
99
cssRoot: `${__dirname}/__mocks__/tailwind.css`,
10-
base: "packages/create-tailwind-type/node_modules/tailwindcss",
11-
// base: "node_modules/tailwindcss",
10+
// base: "packages/create-tailwind-type/node_modules/tailwindcss",
11+
base: "node_modules/tailwindcss",
1212
})
1313
})
1414

0 commit comments

Comments
 (0)