mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 11:17:33 +01:00
f634c82451
* test(workerd): rename the runtime test `wrangler` to `workerd` * fixed ci.yml * fixed a typo * use node 20.x
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from 'vitest/config'
|
|
import config from '../../vitest.config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['**/runtime_tests/workerd/**/(*.)+(test).+(ts|tsx)'],
|
|
exclude: ['**/runtime_tests/workerd/vitest.config.ts'],
|
|
coverage: {
|
|
...config.test?.coverage,
|
|
reportsDirectory: './coverage/raw/runtime-workerd',
|
|
},
|
|
},
|
|
})
|