* adjustments for each language json file: - changed every Cal or Cal.com with a variable to make it possible to change that with a custom brand - fix and renamed ATTENDEE with attendeeName * added two new variables for appName and support mail address. so everybody can change it via env * changed static Cal or Cal.com with new defined constants * Using useLocal to modify static text to make it multilingual, and passing the correct variables for brand and mail * adding new readable variables for brand, website domain and mail address * fixed search routes * made static text multilingual and fixed german translations * Revert "fixed search routes" moved changes in another pr This reverts commit e6ba11a1ec7821d8c16c502d0357f6d5fcdb1958. * revert non whitelabel changes and moved it into another pr * revert attendeeName fix * reverted translation fixes and moved them in another pr * changed back to "Cal.com Logo" * changed back to "https://console.cal.com" * added new env variable for company name and replaced some domainName variables in language files * changed default for COMPANY_NAME to Cal.com, Inc. * changed Cal.com to APP_NAME for mail templates * Dropped website domain in favor of app name * Update .env.example * Apply suggestions from code review * Code review feedback * Delete App.tsx * Update packages/ui/Kbar.tsx * added meta.CTA back it was mistakenly removed * updated add members test Co-authored-by: maxi <maximilian.oehrlein@clicksports.de> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
64 lines
2.7 KiB
TypeScript
64 lines
2.7 KiB
TypeScript
import { expect } from "@playwright/test";
|
|
|
|
import { test } from "./lib/fixtures";
|
|
|
|
test.describe.configure({ mode: "parallel" });
|
|
|
|
test.describe("Teams", () => {
|
|
test.afterEach(async ({ users }) => {
|
|
await users.deleteAll();
|
|
});
|
|
|
|
test("Can create teams via Wizard", async ({ page, users }) => {
|
|
const user = await users.create();
|
|
const inviteeEmail = `${user.username}+invitee@example.com`;
|
|
await user.login();
|
|
await page.goto("/teams");
|
|
|
|
await test.step("Can create team", async () => {
|
|
// Click text=Create Team
|
|
await page.locator("text=Create Team").click();
|
|
await page.waitForURL("/settings/teams/new");
|
|
// Fill input[name="name"]
|
|
await page.locator('input[name="name"]').fill(`${user.username}'s Team`);
|
|
// Click text=Continue
|
|
await page.locator("text=Continue").click();
|
|
await page.waitForURL(/\/settings\/teams\/(\d+)\/onboard-members$/i);
|
|
await page.waitForSelector('[data-testid="pending-member-list"]');
|
|
expect(await page.locator('[data-testid="pending-member-item"]').count()).toBe(1);
|
|
});
|
|
|
|
await test.step("Can add members", async () => {
|
|
// Click [data-testid="new-member-button"]
|
|
await page.locator('[data-testid="new-member-button"]').click();
|
|
// Fill [placeholder="email\@example\.com"]
|
|
await page.locator('[placeholder="email\\@example\\.com"]').fill(inviteeEmail);
|
|
// Click [data-testid="invite-new-member-button"]
|
|
await page.locator('[data-testid="invite-new-member-button"]').click();
|
|
await expect(page.locator(`li:has-text("${inviteeEmail}")`)).toBeVisible();
|
|
expect(await page.locator('[data-testid="pending-member-item"]').count()).toBe(2);
|
|
});
|
|
|
|
await test.step("Can remove members", async () => {
|
|
const removeMemberButton = page.locator('[data-testid="remove-member-button"]');
|
|
await removeMemberButton.click();
|
|
await removeMemberButton.waitFor({ state: "hidden" });
|
|
expect(await page.locator('[data-testid="pending-member-item"]').count()).toBe(1);
|
|
});
|
|
|
|
await test.step("Can publish team", async () => {
|
|
await page.locator("text=Publish team").click();
|
|
await page.waitForURL(/\/settings\/teams\/(\d+)\/profile$/i);
|
|
});
|
|
|
|
await test.step("Can disband team", async () => {
|
|
await page.locator("text=Disband Team").click();
|
|
await page.locator("text=Yes, disband team").click();
|
|
await page.waitForURL("/teams");
|
|
await expect(await page.locator(`text=${user.username}'s Team`).count()).toEqual(0);
|
|
// FLAKY: If other tests are running async this may mean there are >0 teams, empty screen will not be shown.
|
|
// await expect(page.locator('[data-testid="empty-screen"]')).toBeVisible();
|
|
});
|
|
});
|
|
});
|