Skip to content

Commit

Permalink
chore: exmlude modules in template tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbate committed Oct 17, 2024
1 parent 9ebd6c2 commit 4b4ecf4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/proud-donuts-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

chore: exlude `node_modules` in template tests
2 changes: 1 addition & 1 deletion templates/nextjs/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
esbuild: { target: "es2022" },
test: {
exclude: ["**/test/ui/**"],
exclude: ["**/test/ui/**", "**/node_modules/**"],
},
});
2 changes: 1 addition & 1 deletion templates/vite/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
esbuild: { target: "es2022" },
test: {
exclude: ["**/test/ui/**"],
exclude: ["**/test/ui/**", "**/node_modules/**"],
},
});

0 comments on commit 4b4ecf4

Please sign in to comment.