Files
headroom/frontend/node_modules/effect/dist/dts/TestConfig.d.ts
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- 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
2026-02-17 16:19:59 -05:00

45 lines
1.2 KiB
TypeScript

/**
* @since 2.0.0
*/
import * as Context from "./Context.js";
/**
* The `TestConfig` service provides access to default configuration settings
* used by tests, including the number of times to repeat tests to ensure
* they are stable, the number of times to retry flaky tests, the sufficient
* number of samples to check from a random variable, and the maximum number of
* shrinkings to minimize large failures.
*
* @since 2.0.0
*/
export interface TestConfig {
/**
* The number of times to repeat tests to ensure they are stable.
*/
readonly repeats: number;
/**
* The number of times to retry flaky tests.
*/
readonly retries: number;
/**
* The number of sufficient samples to check for a random variable.
*/
readonly samples: number;
/**
* The maximum number of shrinkings to minimize large failures
*/
readonly shrinks: number;
}
/**
* @since 2.0.0
*/
export declare const TestConfig: Context.Tag<TestConfig, TestConfig>;
/**
* @since 2.0.0
*/
export declare const make: (params: {
readonly repeats: number;
readonly retries: number;
readonly samples: number;
readonly shrinks: number;
}) => TestConfig;
//# sourceMappingURL=TestConfig.d.ts.map