mirror of
https://github.com/kremalicious/astro-redirect-from.git
synced 2024-11-22 09:57:03 +01:00
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
|
/// <reference types="vitest" />
|
||
|
import { defineConfig } from 'vitest/config'
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
globals: true,
|
||
|
environment: 'node',
|
||
|
include: ['./test/**/*.test.?(c|m)[jt]s?(x)'],
|
||
|
coverage: {
|
||
|
all: true,
|
||
|
include: ['src']
|
||
|
}
|
||
|
}
|
||
|
})
|