Files
headroom/frontend/node_modules/fast-check/lib/check/runner/RunnerIterator.js
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

47 lines
1.7 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RunnerIterator = void 0;
const PreconditionFailure_1 = require("../precondition/PreconditionFailure");
const RunExecution_1 = require("./reporter/RunExecution");
class RunnerIterator {
constructor(sourceValues, shrink, verbose, interruptedAsFailure) {
this.sourceValues = sourceValues;
this.shrink = shrink;
this.runExecution = new RunExecution_1.RunExecution(verbose, interruptedAsFailure);
this.currentIdx = -1;
this.nextValues = sourceValues;
}
[Symbol.iterator]() {
return this;
}
next() {
const nextValue = this.nextValues.next();
if (nextValue.done || this.runExecution.interrupted) {
return { done: true, value: undefined };
}
this.currentValue = nextValue.value;
++this.currentIdx;
return { done: false, value: nextValue.value.value_ };
}
handleResult(result) {
if (result != null && typeof result === 'object' && !PreconditionFailure_1.PreconditionFailure.isFailure(result)) {
this.runExecution.fail(this.currentValue.value_, this.currentIdx, result);
this.currentIdx = -1;
this.nextValues = this.shrink(this.currentValue);
}
else if (result != null) {
if (!result.interruptExecution) {
this.runExecution.skip(this.currentValue.value_);
this.sourceValues.skippedOne();
}
else {
this.runExecution.interrupt();
}
}
else {
this.runExecution.success(this.currentValue.value_);
}
}
}
exports.RunnerIterator = RunnerIterator;