Skip to content

Commit

Permalink
Disable vitest multi-threading (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonyfaris authored Apr 11, 2022
1 parent a7a6b14 commit f5fcc1b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/stale-terms-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'prettier-plugin-astro': patch
---

Disable vitest multi-threading
8 changes: 8 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/// <reference types="vitest" />
import { defineConfig } from 'vite';

export default defineConfig({
test: {
threads: false,
},
});

0 comments on commit f5fcc1b

Please sign in to comment.