5 lines
261 B
TypeScript
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 () => {};
|