2
0
mirror of https://github.com/iconify/iconify.git synced 2024-12-05 02:33:16 +00:00

Fix include in vitest config in core

This commit is contained in:
Vjacheslav Trushkin 2022-03-16 12:14:35 +02:00
parent 5feccddcb3
commit 71e3aa8597
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ module.exports = defineConfig({
test: {
globals: true,
watch: false,
include: ['**/tests/*-test.ts'],
include: ['**/tests/**/*-test.ts'],
},
});

View File

@ -4,6 +4,6 @@ export default defineConfig({
test: {
globals: true,
watch: false,
include: ['**/tests/*-test.ts'],
include: ['**/tests/**/*-test.ts'],
},
});