mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 11:17:33 +01:00
45d612d641
* refactor(test): change to not use `env` command * fix bun test
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
env: {
|
|
NAME: 'Node',
|
|
},
|
|
globals: true,
|
|
include: ['**/runtime_tests/lambda/**/*.+(ts|tsx|js)'],
|
|
exclude: ['**/runtime_tests/lambda/vitest.config.ts', '**/runtime_tests/lambda/mock.ts'],
|
|
},
|
|
})
|