merge(dev): sync tested frontend changes into main
This commit is contained in:
commit
2faf2415ce
1 changed files with 26 additions and 23 deletions
|
|
@ -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 () => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue