Add project files
This commit is contained in:
27
e2e-tests/delete_app.spec.ts
Normal file
27
e2e-tests/delete_app.spec.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import fs from "fs";
|
||||
import { testSkipIfWindows } from "./helpers/test_helper";
|
||||
import { expect } from "@playwright/test";
|
||||
|
||||
testSkipIfWindows("delete app", async ({ po }) => {
|
||||
await po.setUp();
|
||||
await po.sendPrompt("hi");
|
||||
const appName = await po.getCurrentAppName();
|
||||
if (!appName) {
|
||||
throw new Error("App name not found");
|
||||
}
|
||||
const appPath = await po.getCurrentAppPath();
|
||||
await po.getTitleBarAppNameButton().click();
|
||||
await expect(po.getAppListItem({ appName })).toBeVisible();
|
||||
|
||||
// Delete app
|
||||
await po.clickAppDetailsMoreOptions();
|
||||
// Open delete dialog
|
||||
await po.page.getByRole("button", { name: "Delete" }).click();
|
||||
// Confirm delete
|
||||
await po.page.getByRole("button", { name: "Delete App" }).click();
|
||||
|
||||
// Make sure the app is deleted
|
||||
await po.isCurrentAppNameNone();
|
||||
expect(fs.existsSync(appPath)).toBe(false);
|
||||
expect(po.getAppListItem({ appName })).not.toBeVisible();
|
||||
});
|
||||
Reference in New Issue
Block a user