cal.pub0.org/apps/web/playwright/app-store.e2e.ts

27 lines
1005 B
TypeScript
Raw Normal View History

2022-05-11 04:28:48 +00:00
import { expect } from "@playwright/test";
import { test } from "./lib/fixtures";
2022-05-11 17:12:58 +00:00
test.describe.configure({ mode: "parallel" });
test.describe("App Store - Authed", () => {
test("Browse apple-calendar and try to install", async ({ page, users }) => {
const pro = await users.create();
await pro.login();
2022-09-15 11:52:52 +00:00
await page.goto("/apps/categories/calendar");
2022-05-11 04:28:48 +00:00
await page.click('[data-testid="app-store-app-card-apple-calendar"]');
await page.click('[data-testid="install-app-button"]');
2022-05-11 04:28:48 +00:00
await expect(page.locator(`text=Connect to Apple Server`)).toBeVisible();
await pro.delete();
});
});
test.describe("App Store - Unauthed", () => {
test("Browse apple-calendar and try to install", async ({ page }) => {
2022-09-15 11:52:52 +00:00
await page.goto("/apps/categories/calendar");
await page.click('[data-testid="app-store-app-card-apple-calendar"]');
2022-05-11 03:37:09 +00:00
await page.click('[data-testid="install-app-button"]');
2022-05-11 04:28:48 +00:00
await expect(page.locator(`[data-testid="login-form"]`)).toBeVisible();
});
});