Files
openmaic/OpenMAIC/tests/generation/foreground-retry.test.ts
2026-08-16 14:58:47 +08:00

9 lines
325 B
TypeScript

import { describe, expect, it } from 'vitest';
import { FOREGROUND_SCENE_RETRY_OPTIONS } from '@/app/generation-preview/foreground-retry';
describe('foreground scene retry budget', () => {
it('limits the visible first scene to two retries', () => {
expect(FOREGROUND_SCENE_RETRY_OPTIONS.maxRetries).toBe(2);
});
});