Skip to content

Commit

Permalink
Iterate
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy committed Dec 17, 2024
1 parent 15cf95f commit d3067d0
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 31 deletions.
3 changes: 3 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export default defineConfig({
"permissions.default.microphone": 1,
},
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
},
ignoreSnapshots: true,
grepInvert: /@no-firefox/,
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/crypto/dehydration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ test.describe("Dehydration", () => {

test.use({
displayName: NAME,
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

test("Create dehydrated device", async ({ page, user, app }, workerInfo) => {
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/integration-manager/get-openid-token.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ test.describe("Integration Manager: Get OpenID Token", () => {
});
await use({ roomId });
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

let integrationManagerUrl: string;
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/integration-manager/kick.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ test.describe("Integration Manager: Kick", () => {
displayName: BOT_DISPLAY_NAME,
autoAcceptInvites: true,
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

let integrationManagerUrl: string;
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/integration-manager/read_events.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ test.describe("Integration Manager: Read Events", () => {
});
await use({ roomId });
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

let integrationManagerUrl: string;
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/integration-manager/send_event.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ test.describe("Integration Manager: Send Event", () => {
});
await use({ roomId });
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

let integrationManagerUrl: string;
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/login/soft_logout.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ test.describe("Soft logout", () => {
template: "default",
oAuthServerPort: oAuthServer.port,
}),
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

test.describe("with password user", () => {
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/oidc/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ export const test = base.extend<{
default_server_config: wellKnown,
});
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

export { expect };
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/register/register.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ import { test, expect } from "../../element-web-test";
test.describe("Registration", () => {
test.use({
startHomeserverOpts: "consent",
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

test.beforeEach(async ({ page }) => {
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/settings/account-user-settings-tab.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ test.describe("Account user settings tab", () => {
const locator = await app.settings.openUserSettings("Account");
await use(locator);
},
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

test("should be rendered properly", { tag: "@screenshot" }, async ({ uut, user }) => {
Expand Down
3 changes: 0 additions & 3 deletions playwright/e2e/update/update.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ test.describe("Update", () => {

test.use({
displayName: "Ursa",
// This is needed to work around an issue between Playwright, Firefox, and Service workers
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
serviceWorkers: "block",
});

test.beforeEach(async ({ context }) => {
Expand Down
1 change: 0 additions & 1 deletion playwright/plugins/docker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import * as os from "os";
import * as crypto from "crypto";
import * as childProcess from "child_process";
import * as fse from "fs-extra";
import { runtime } from "webpack";

/**
* @param cmd - command to execute
Expand Down

0 comments on commit d3067d0

Please sign in to comment.