mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-19 21:31:48 -06:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['test/**/*.spec.ts'],
|
|
globals: true,
|
|
environment: 'node',
|
|
},
|
|
})
|