merge(dev): sync tested frontend changes into main

This commit is contained in:
777genius 2026-04-29 00:13:16 +03:00
commit 2faf2415ce

View file

@ -5549,7 +5549,8 @@ describe('TeamProvisioningService', () => {
); );
await (svc as any).launchMixedSecondaryLaneIfNeeded(run); await (svc as any).launchMixedSecondaryLaneIfNeeded(run);
await vi.waitFor(async () => { await vi.waitFor(
async () => {
expect(adapterLaunch).toHaveBeenCalledTimes(1); expect(adapterLaunch).toHaveBeenCalledTimes(1);
const launchInput = adapterLaunch.mock.calls[0]?.[0] as { runId?: string } | undefined; const launchInput = adapterLaunch.mock.calls[0]?.[0] as { runId?: string } | undefined;
expect(launchInput?.runId).toEqual(expect.any(String)); expect(launchInput?.runId).toEqual(expect.any(String));
@ -5572,7 +5573,9 @@ describe('TeamProvisioningService', () => {
}, },
}, },
}); });
}); },
{ timeout: 5000 }
);
}); });
it('starts all queued OpenCode secondary lanes without letting the first in-flight lane block its siblings', async () => { it('starts all queued OpenCode secondary lanes without letting the first in-flight lane block its siblings', async () => {