mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: Vladimir <sleuths.slews0s@icloud.com> Co-authored-by: Michał Grzegorzewski <4864089+spamshaker@users.noreply.github.com>
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import {defineConfig} from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
diff: {
|
|
// expand: false,
|
|
// printBasicPrototype: false,
|
|
}
|
|
}
|
|
})
|