docs(FN-1510): add skill selection resolver pattern to memory

This commit is contained in:
gsxdsm
2026-04-14 08:02:09 -07:00
parent d7e27ae082
commit 1902a70aea
2 changed files with 29 additions and 0 deletions

View File

@@ -680,6 +680,7 @@ describe("SettingsModal", () => {
render(<SettingsModal onClose={onClose} addToast={addToast} initialSection="scheduling" />);
await waitFor(() => expect(fetchSettings).toHaveBeenCalled());
await waitFor(() => expect(fetchGlobalConcurrency).toHaveBeenCalled());
const input = screen.getByLabelText("Global Max Concurrent") as HTMLInputElement;
expect(input.value).toBe("8");