test(FN-4761): complete Step 5 — add review transition regression coverage

Fusion-Task-Id: FN-4761
Fusion-Task-Lineage: b6b1ed73-c396-4dd2-b97f-366272d05c7f
This commit is contained in:
Fusion (runfusion.ai)
2026-05-17 11:29:39 -07:00
committed by gsxdsm
parent 3d7e737fbe
commit 439716165b
3 changed files with 64 additions and 0 deletions

View File

@@ -149,6 +149,15 @@
text-decoration: underline;
}
.pr-hint--warning {
background: color-mix(in srgb, var(--color-warning) 12%, transparent);
border: var(--btn-border-width) solid color-mix(in srgb, var(--color-warning) 35%, transparent);
border-radius: var(--radius-md);
color: var(--color-warning);
font-size: 0.8125rem;
padding: var(--space-sm);
}
@media (max-width: 768px) {
.pr-panel-checks-rollup {
align-items: flex-start;

View File

@@ -1197,6 +1197,8 @@ describe("SettingsModal", () => {
await waitForSettingsModalReady();
expect(await screen.findByText(/Could not load detected remotes/i)).toBeInTheDocument();
const control = screen.getByRole("combobox", { name: "Project default tracking repo" });
await userEvent.selectOptions(control, "__custom__");
expect(screen.getByPlaceholderText("owner/repo")).toBeInTheDocument();
});