diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-12 21:44:23 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-12 21:44:23 -0800 |
| commit | 9db2500fb340ef304c0f15f4379bc33589df9a63 (patch) | |
| tree | 55495be30810f55aa1115ad2b392f97ce8650efb /frontend/vitest.config.ts | |
| parent | de96851d8eb0a0b45d7bf0cee67339fea54349f0 (diff) | |
| download | neko-9db2500fb340ef304c0f15f4379bc33589df9a63.tar.gz neko-9db2500fb340ef304c0f15f4379bc33589df9a63.tar.bz2 neko-9db2500fb340ef304c0f15f4379bc33589df9a63.zip | |
Scaffold new frontend and close NK-t0nmbj
Diffstat (limited to 'frontend/vitest.config.ts')
| -rw-r--r-- | frontend/vitest.config.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts new file mode 100644 index 0000000..cca59f2 --- /dev/null +++ b/frontend/vitest.config.ts @@ -0,0 +1,10 @@ +/// <reference types="vitest" /> +import { defineConfig } from 'vite' + +export default defineConfig({ + test: { + globals: true, + environment: 'jsdom', + setupFiles: './src/setupTests.ts', + }, +}) |
