- 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
32 lines
774 B
JavaScript
32 lines
774 B
JavaScript
import { r as runBaseTests } from '../chunks/base.DfmxU-tU.js';
|
|
import { a as createThreadsRpcOptions } from '../chunks/utils.CAioKnHs.js';
|
|
import 'vite-node/client';
|
|
import '../chunks/execute.B7h3T_Hc.js';
|
|
import 'node:fs';
|
|
import 'node:url';
|
|
import 'node:vm';
|
|
import '@vitest/utils/error';
|
|
import 'pathe';
|
|
import 'vite-node/utils';
|
|
import '../path.js';
|
|
import 'node:path';
|
|
import '@vitest/mocker';
|
|
import 'node:module';
|
|
import '@vitest/utils';
|
|
import '../chunks/utils.XdZDrNZV.js';
|
|
|
|
class ThreadsBaseWorker {
|
|
getRpcOptions(ctx) {
|
|
return createThreadsRpcOptions(ctx);
|
|
}
|
|
runTests(state) {
|
|
return runBaseTests("run", state);
|
|
}
|
|
collectTests(state) {
|
|
return runBaseTests("collect", state);
|
|
}
|
|
}
|
|
const worker = new ThreadsBaseWorker();
|
|
|
|
export { worker as default };
|