mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
23 lines
409 B
TypeScript
23 lines
409 B
TypeScript
/**
|
|
* @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
|
|
}
|
|
} );
|