mirror of
https://github.com/coleam00/context-engineering-intro.git
synced 2025-12-17 17:55:29 +00:00
9 lines
175 B
JavaScript
9 lines
175 B
JavaScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
environment: 'node',
|
||
|
|
globals: true,
|
||
|
|
setupFiles: ['./tests/setup.ts'],
|
||
|
|
},
|
||
|
|
})
|