Spaces:
Running
Running
assafvayner HF Staff
fix(app): 503 on storage failures, validated currency, lock release on shutdown, per-IP login limit, unit-only npm test
e830ad4 | import { sveltekit } from '@sveltejs/kit/vite'; | |
| import tailwindcss from '@tailwindcss/vite'; | |
| import { defineConfig } from 'vitest/config'; | |
| export default defineConfig({ | |
| plugins: [tailwindcss(), sveltekit()], | |
| test: { | |
| // Unit tests only: `npm test` must never touch the real bucket. | |
| // Integration tests run via vitest.integration.config.ts. | |
| include: ['tests/unit/**/*.test.ts'], | |
| environment: 'node' | |
| } | |
| }); | |