0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00
hono/runtime_tests/node/vitest.config.ts
TATSUNO “Taz” Yasuhiro 8cc8a05c89
ci: Report coverage with CodeCov (#2862)
* Output coverage per each test

* Collect coverage

* Exclude test-only files

* update comment

* exclude types

* Add config

* Update bun comment

* Generate coverage in Deno
2024-06-01 04:17:47 +09:00

19 lines
450 B
TypeScript

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