test(vitest): include canvas component tests

This commit is contained in:
2026-04-03 20:45:22 +02:00
parent 928fd81904
commit 297816c5ca

View File

@@ -9,6 +9,9 @@ export default defineConfig({
},
test: {
environment: "node",
include: ["tests/**/*.test.ts"],
include: [
"tests/**/*.test.ts",
"components/**/__tests__/*.test.ts",
],
},
});