1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-10-22 03:12:43 +02:00
astro-redirect-from/test/vitest.config.ts

15 lines
283 B
TypeScript
Raw Normal View History

2023-09-24 00:25:14 +02:00
/// <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']
}
}
})