0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
hono/runtime-tests/bun/vitest.config.ts
Yusuke Wada dfbd717263
chore: rename runtime_tests to runtime-tests (#3419)
* chore: rename `runtime_tests` to `runtime-tests`

* fixed GitHub workflow
2024-09-17 14:51:43 +09:00

15 lines
353 B
TypeScript

/// <reference types="vitest" />
import { defineConfig } from 'vitest/config'
import config from '../../vitest.config'
export default defineConfig({
test: {
globals: true,
include: ['**/runtime-tests/bun/**/*.+(ts|tsx|js)'],
coverage: {
...config.test?.coverage,
reportsDirectory: './coverage/raw/runtime-bun',
},
},
})