23 lines
409 B
TypeScript
Raw Permalink Normal View History

/**
* @license Copyright (c) 2023-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md.
*/
import { defineConfig } from 'vitest/config';
import svg from 'vite-plugin-svgo';
export default defineConfig( {
plugins: [
svg()
],
test: {
environment: "happy-dom",
include: [
'tests/**/*.[jt]s'
],
globals: true,
watch: false,
passWithNoTests: true
}
} );