stratoflights-web/tests/stubs/app-navigation.ts
2026-08-14 00:01:49 +09:00

5 lines
261 B
TypeScript

// Stub for SvelteKit's virtual `$app/navigation` module under Vitest.
// Tests that care about navigation override these with vi.mock().
export const goto = async () => {};
export const invalidate = async () => {};
export const invalidateAll = async () => {};