Files
mygo/web/vitest.config.ts
T
ld 04eb8727eb feat(web): add authenticated file workflow
- feat: connect login and logout to the REST API with session-scoped tokens, protected routing, single-flight refresh, and authenticated query cache cleanup.
- feat: add the Ant Design application shell with root file listing, pagination, small-file upload, and authenticated download.
- test: cover session storage and API retry and error behavior with Vitest.
- docs: document the browser milestone, same-origin API topology, and deferred transfer and account features.
2026-07-15 20:16:11 +08:00

8 lines
135 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: ['src/**/*.test.{ts,tsx}'],
},
})