mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 15:20:54 +00:00
15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
|
/// <reference types="vitest" />
|
||
|
|
||
|
import { defineConfig } from 'vitest/config';
|
||
|
import Vue from '@vitejs/plugin-vue';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [Vue()],
|
||
|
test: {
|
||
|
globals: true,
|
||
|
watch: false,
|
||
|
include: ['tests/**/*-test.ts'],
|
||
|
environment: 'jsdom',
|
||
|
},
|
||
|
});
|