mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Project picker tests had depended on a placeholder changed for fuzzy search. Use a dedicated input test ID so product copy no longer breaks the selectors.
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
import { test, expect } from "./fixtures";
|
|
import { gotoAppShell } from "./helpers/app";
|
|
import { injectDesktopBridge, waitForDirectoryDialog } from "./helpers/desktop-updates";
|
|
import { expectOpenedProject } from "./helpers/project-picker-ui";
|
|
import { getServerId } from "./helpers/server-id";
|
|
|
|
test.skip(process.env.E2E_DESKTOP_RUNTIME !== "1", "requires Metro's Electron platform overlay");
|
|
|
|
test("Browse opens the folder selected by the desktop dialog", async ({
|
|
page,
|
|
projectPickerFixture,
|
|
}) => {
|
|
await injectDesktopBridge(page, {
|
|
serverId: getServerId(),
|
|
manageBuiltInDaemon: false,
|
|
dialogOpenResult: projectPickerFixture.projectPath,
|
|
});
|
|
await gotoAppShell(page);
|
|
|
|
await page.getByTestId("sidebar-add-project").click();
|
|
const browse = page.getByRole("button", { name: "Browse…" });
|
|
await expect(browse).toBeVisible({ timeout: 30_000 });
|
|
await browse.click();
|
|
|
|
const projectId = await expectOpenedProject(page, projectPickerFixture.projectName);
|
|
projectPickerFixture.rememberProjectId(projectId);
|
|
});
|
|
|
|
test("Browse owns Enter without opening the active typed path", async ({
|
|
page,
|
|
projectPickerFixture,
|
|
}) => {
|
|
await injectDesktopBridge(page, {
|
|
serverId: getServerId(),
|
|
manageBuiltInDaemon: false,
|
|
dialogOpenResult: null,
|
|
});
|
|
await gotoAppShell(page);
|
|
|
|
await page.getByTestId("sidebar-add-project").click();
|
|
const input = page.getByTestId("project-picker-input");
|
|
await expect(input).toBeVisible({ timeout: 30_000 });
|
|
await input.fill(projectPickerFixture.projectPath);
|
|
|
|
const browse = page.getByRole("button", { name: "Browse…" });
|
|
await expect(browse).toBeVisible({ timeout: 30_000 });
|
|
await browse.press("Enter");
|
|
|
|
const dialogOptions = await waitForDirectoryDialog(page);
|
|
expect(dialogOptions).toEqual({
|
|
directory: true,
|
|
multiple: false,
|
|
});
|
|
await expect(input).toBeVisible();
|
|
await expect(
|
|
page
|
|
.locator('[data-testid^="sidebar-project-row-"]')
|
|
.filter({ hasText: projectPickerFixture.projectName }),
|
|
).toHaveCount(0);
|
|
});
|