Parallelizes some tests

pull/2652/head
zomars 2022-05-11 11:12:58 -06:00
parent c3909ccc70
commit f0ea8d30ca
3 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,8 @@ import { expect } from "@playwright/test";
import { test } from "./lib/fixtures";
test.describe.configure({ mode: "parallel" });
test.describe("App Store - Authed", () => {
test.use({ storageState: "playwright/artifacts/proStorageState.json" });
test("Browse apple-calendar and try to install", async ({ page }) => {

View File

@ -79,6 +79,8 @@ async function expectToContainValidPreviewIframe(
);
}
test.describe.configure({ mode: "parallel" });
test.describe("Embed Code Generator Tests", () => {
test.use({ storageState: "playwright/artifacts/proStorageState.json" });

View File

@ -3,6 +3,8 @@ import { expect, Locator, test } from "@playwright/test";
import { randomString } from "../lib/random";
import { deleteEventTypeByTitle } from "./lib/teardown";
test.describe.configure({ mode: "parallel" });
test.describe("Event Types tests", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/event-types");