We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4199054 commit 8922f6eCopy full SHA for 8922f6e
vitest.config.ts
@@ -1,8 +1,9 @@
1
import codspeed from '@codspeed/vitest-plugin'
2
+import { isCI, isWindows } from 'std-env'
3
import { defaultExclude, defineConfig } from 'vitest/config'
4
5
export default defineConfig({
- plugins: [codspeed()],
6
+ plugins: isCI && !isWindows ? [codspeed()] : [],
7
test: {
8
coverage: {},
9
exclude: [
0 commit comments