sv
Version:
A command line interface (CLI) for creating and maintaining Svelte applications
17 lines (14 loc) • 341 B
JavaScript
import { defineConfig } from 'vitest/config';
const ONE_MINUTE = 1000 * 60;
export default defineConfig({
test: {
include: ['tests/**/*.test.{js,ts}'],
exclude: ['tests/setup/*'],
testTimeout: ONE_MINUTE * 3,
hookTimeout: ONE_MINUTE * 3,
globalSetup: ['tests/setup/global.js'],
expect: {
requireAssertions: true
}
}
});