mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
watch: false,
|
|
include: ['**/tests/**/*-test.ts'],
|
|
},
|
|
});
|