kammer/src/test/mocks/stores.ts
Christopher Mühl 9af7e52e7a chore: add vitest infrastructure and agent definitions
Set up vitest with jsdom, fake-indexeddb, @testing-library/svelte,
$app mock modules, and agent definitions for test-writer/implementer/reviewer.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 15:22:19 +01:00

14 lines
290 B
TypeScript

import { readable, writable } from 'svelte/store';
export const page = readable({
url: new URL('http://localhost'),
params: {},
route: { id: '' },
status: 200,
error: null,
data: {},
form: null,
});
export const navigating = readable(null);
export const updated = readable(false);