-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8abc37
commit 36d60e7
Showing
27 changed files
with
1,496 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// config/vitest.ts | ||
// The vitest configuration file. | ||
|
||
import { env } from 'node:process'; | ||
import { defineConfig } from 'vitest/config'; | ||
|
||
// Make sure the output of the CLI is in color, so that it matches the | ||
// snapshots. | ||
env.FORCE_COLOR = 2; | ||
|
||
export default defineConfig({ | ||
test: { | ||
// Collect coverage using C8. | ||
coverage: { enabled: true }, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.