- 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
21 lines
976 B
JavaScript
21 lines
976 B
JavaScript
import { IntegerArbitrary } from './_internals/IntegerArbitrary.js';
|
|
const safeNumberIsInteger = Number.isInteger;
|
|
function buildCompleteIntegerConstraints(constraints) {
|
|
const min = constraints.min !== undefined ? constraints.min : -0x80000000;
|
|
const max = constraints.max !== undefined ? constraints.max : 0x7fffffff;
|
|
return { min, max };
|
|
}
|
|
export function integer(constraints = {}) {
|
|
const fullConstraints = buildCompleteIntegerConstraints(constraints);
|
|
if (fullConstraints.min > fullConstraints.max) {
|
|
throw new Error('fc.integer maximum value should be equal or greater than the minimum one');
|
|
}
|
|
if (!safeNumberIsInteger(fullConstraints.min)) {
|
|
throw new Error('fc.integer minimum value should be an integer');
|
|
}
|
|
if (!safeNumberIsInteger(fullConstraints.max)) {
|
|
throw new Error('fc.integer maximum value should be an integer');
|
|
}
|
|
return new IntegerArbitrary(fullConstraints.min, fullConstraints.max);
|
|
}
|