Skip to content

Commit e5c8d7d

Browse files
Update playwright to v1.50.1 (#29183)
* Update playwright to v1.50.1 * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 441119c commit e5c8d7d

57 files changed

Lines changed: 17 additions & 18 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

playwright/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.49.1-noble
1+
FROM mcr.microsoft.com/playwright:v1.50.1-noble
22

33
WORKDIR /work
44

playwright/e2e/forgot-password/forgot-password.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,21 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Com
66
Please see LICENSE files in the repository root for full details.
77
*/
88

9-
import { expect, test as base } from "../../element-web-test";
9+
import { type CredentialsWithDisplayName, expect, test as base } from "../../element-web-test";
1010
import { selectHomeserver } from "../utils";
1111
import { emailHomeserver } from "../../plugins/homeserver/synapse/emailHomeserver.ts";
1212
import { isDendrite } from "../../plugins/homeserver/dendrite";
13-
import { type Credentials } from "../../plugins/homeserver";
1413

1514
const email = "user@nowhere.dummy";
1615

17-
const test = base.extend<{ credentials: Pick<Credentials, "username" | "password"> }>({
16+
const test = base.extend({
1817
// eslint-disable-next-line no-empty-pattern
1918
credentials: async ({}, use, testInfo) => {
2019
await use({
2120
username: `user_${testInfo.testId}`,
2221
// this has to be password-like enough to please zxcvbn. Needless to say it's just from pwgen.
2322
password: "oETo7MPf0o",
24-
});
23+
} as CredentialsWithDisplayName);
2524
},
2625
});
2726

2.3 KB
299 Bytes
650 Bytes
609 Bytes
4.88 KB
4.11 KB
1.82 KB

0 commit comments

Comments
 (0)