- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { OptionsReceived, Plugin } from '@vitest/pretty-format';
|
|
import { S as SnapshotEnvironment } from './environment.d-DHdQ1Csl.js';
|
|
|
|
type SnapshotData = Record<string, string>;
|
|
type SnapshotUpdateState = "all" | "new" | "none";
|
|
type SnapshotSerializer = Plugin;
|
|
interface SnapshotStateOptions {
|
|
updateSnapshot: SnapshotUpdateState;
|
|
snapshotEnvironment: SnapshotEnvironment;
|
|
expand?: boolean;
|
|
snapshotFormat?: OptionsReceived;
|
|
resolveSnapshotPath?: (path: string, extension: string, context?: any) => string;
|
|
}
|
|
interface SnapshotMatchOptions {
|
|
testId: string;
|
|
testName: string;
|
|
received: unknown;
|
|
key?: string;
|
|
inlineSnapshot?: string;
|
|
isInline: boolean;
|
|
error?: Error;
|
|
rawSnapshot?: RawSnapshotInfo;
|
|
}
|
|
interface SnapshotResult {
|
|
filepath: string;
|
|
added: number;
|
|
fileDeleted: boolean;
|
|
matched: number;
|
|
unchecked: number;
|
|
uncheckedKeys: Array<string>;
|
|
unmatched: number;
|
|
updated: number;
|
|
}
|
|
interface UncheckedSnapshot {
|
|
filePath: string;
|
|
keys: Array<string>;
|
|
}
|
|
interface SnapshotSummary {
|
|
added: number;
|
|
didUpdate: boolean;
|
|
failure: boolean;
|
|
filesAdded: number;
|
|
filesRemoved: number;
|
|
filesRemovedList: Array<string>;
|
|
filesUnmatched: number;
|
|
filesUpdated: number;
|
|
matched: number;
|
|
total: number;
|
|
unchecked: number;
|
|
uncheckedKeysByFile: Array<UncheckedSnapshot>;
|
|
unmatched: number;
|
|
updated: number;
|
|
}
|
|
|
|
interface RawSnapshotInfo {
|
|
file: string;
|
|
readonly?: boolean;
|
|
content?: string;
|
|
}
|
|
|
|
export type { RawSnapshotInfo as R, SnapshotStateOptions as S, UncheckedSnapshot as U, SnapshotMatchOptions as a, SnapshotResult as b, SnapshotData as c, SnapshotSerializer as d, SnapshotSummary as e, SnapshotUpdateState as f };
|