- [x] add e2e test - happy case (make sure it clears selection and next prompt is empty, and preview is cleared); de-selection case - [x] shim - old & new file - [x] upgrade path - [x] add docs - [x] add try-catch to parser script - [x] make it work for next.js - [x] extract npm package - [x] make sure plugin doesn't apply in prod
103 lines
2.9 KiB
TypeScript
103 lines
2.9 KiB
TypeScript
import { expect } from "@playwright/test";
|
|
import { testSkipIfWindows } from "./helpers/test_helper";
|
|
|
|
testSkipIfWindows("select component", async ({ po }) => {
|
|
await po.setUp();
|
|
await po.sendPrompt("tc=basic");
|
|
await po.clickTogglePreviewPanel();
|
|
await po.clickPreviewPickElement();
|
|
|
|
await po
|
|
.getPreviewIframeElement()
|
|
.contentFrame()
|
|
.getByRole("heading", { name: "Welcome to Your Blank App" })
|
|
.click();
|
|
|
|
await po.snapshotPreview();
|
|
await po.snapshotSelectedComponentDisplay();
|
|
|
|
await po.sendPrompt("[dump] make it smaller");
|
|
await po.snapshotPreview();
|
|
await expect(po.getSelectedComponentDisplay()).not.toBeVisible();
|
|
|
|
await po.snapshotServerDump("all-messages");
|
|
|
|
// Send one more prompt to make sure it's a normal message.
|
|
await po.sendPrompt("[dump] tc=basic");
|
|
await po.snapshotServerDump("last-message");
|
|
});
|
|
|
|
testSkipIfWindows("deselect component", async ({ po }) => {
|
|
await po.setUp();
|
|
await po.sendPrompt("tc=basic");
|
|
await po.clickTogglePreviewPanel();
|
|
await po.clickPreviewPickElement();
|
|
|
|
await po
|
|
.getPreviewIframeElement()
|
|
.contentFrame()
|
|
.getByRole("heading", { name: "Welcome to Your Blank App" })
|
|
.click();
|
|
|
|
await po.snapshotPreview();
|
|
await po.snapshotSelectedComponentDisplay();
|
|
|
|
// Deselect the component and make sure the state has reverted
|
|
await po.clickDeselectComponent();
|
|
|
|
await po.snapshotPreview();
|
|
await expect(po.getSelectedComponentDisplay()).not.toBeVisible();
|
|
|
|
// Send one more prompt to make sure it's a normal message.
|
|
await po.sendPrompt("[dump] tc=basic");
|
|
await po.snapshotServerDump("last-message");
|
|
});
|
|
|
|
testSkipIfWindows("upgrade app to select component", async ({ po }) => {
|
|
await po.setUp();
|
|
await po.importApp("select-component");
|
|
await po.getTitleBarAppNameButton().click();
|
|
await po.clickAppUpgradeButton({ upgradeId: "component-tagger" });
|
|
await po.expectNoAppUpgrades();
|
|
await po.snapshotAppFiles();
|
|
await po.clickOpenInChatButton();
|
|
|
|
await po.clickPreviewPickElement();
|
|
|
|
await po
|
|
.getPreviewIframeElement()
|
|
.contentFrame()
|
|
.getByRole("heading", { name: "Launch Your Next Project" })
|
|
.click();
|
|
|
|
await po.sendPrompt("[dump] make it smaller");
|
|
await po.snapshotServerDump("last-message");
|
|
});
|
|
|
|
testSkipIfWindows("select component next.js", async ({ po }) => {
|
|
await po.setUp();
|
|
|
|
// Select Next.js template
|
|
await po.goToHubTab();
|
|
await po.selectTemplate("Next.js Template");
|
|
await po.goToAppsTab();
|
|
|
|
await po.sendPrompt("tc=basic");
|
|
await po.clickTogglePreviewPanel();
|
|
await po.clickPreviewPickElement();
|
|
|
|
await po
|
|
.getPreviewIframeElement()
|
|
.contentFrame()
|
|
.getByRole("heading", { name: "Blank page" })
|
|
.click();
|
|
|
|
await po.snapshotPreview();
|
|
await po.snapshotSelectedComponentDisplay();
|
|
|
|
await po.sendPrompt("[dump] make it smaller");
|
|
await po.snapshotPreview();
|
|
|
|
await po.snapshotServerDump("all-messages");
|
|
});
|