Skip to content

Commit

Permalink
chore: use threads in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Jul 7, 2023
1 parent 494c3a9 commit 2ab947c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
/// <reference types="vitest/globals" />

import { defineConfig } from 'vite'
import { isCI } from 'std-env'

export default defineConfig({
test: {
threads: false,
threads: isCI, // kills my computer
deps: {
inline: [
'@nuxt/test-utils',
Expand Down

0 comments on commit 2ab947c

Please sign in to comment.