mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: Anjorin Damilare <damilareanjorin1@gmail.com> Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com> Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import TestReporter from './src/custom-reporter'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['tests/reporters.spec.ts'],
|
|
reporters: [new TestReporter()],
|
|
},
|
|
})
|