mirror of
https://github.com/iconify/collections-json.git
synced 2024-11-08 06:15:22 +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: ['src/*.test.ts'],
|
|
},
|
|
});
|