Fix: _actually_ run the *.spec.ts-tests...

This commit is contained in:
Pieter Vander Vennet 2023-05-16 01:34:17 +02:00
parent d8a5f3c2be
commit 82a860cbf5

View file

@ -6,6 +6,6 @@ export default defineConfig({
test: {
globals: true,
setupFiles: ["./test/testhooks.ts"],
include: ["./test", "./*.doctest.ts", "./**/*.doctest.ts"],
include: ["./test/*.spec.ts","./test/**/*.spec.ts", "./*.doctest.ts", "./**/*.doctest.ts"],
},
})