1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-07 21:23:00 +03:00

Migrate remaining editing.spec.ts from Cypress to Playwright (#11976)

* Migrate user-view.spec.ts from Cypress to Playwright

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Add bot support & update screenshot

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Add screenshot

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Use JSHandle

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Remove stale snapshots

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Migrate remaining editing.spec.ts from Cypress to Playwright

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* yay

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix tests

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix tests

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2023-11-30 10:18:18 +00:00
committed by GitHub
parent 07b7ee6111
commit 79daa1a63c
12 changed files with 262 additions and 248 deletions

View File

@@ -179,7 +179,8 @@ export const test = base.extend<
}),
app: async ({ page }, use) => {
await use(new ElementAppPage(page));
const app = new ElementAppPage(page);
await use(app);
},
crypto: async ({ page, homeserver, request }, use) => {
await use(new Crypto(page, homeserver, request));
@@ -191,7 +192,7 @@ export const test = base.extend<
botCreateOpts: {},
bot: async ({ page, homeserver, botCreateOpts }, use) => {
const bot = new Bot(page, homeserver, botCreateOpts);
await bot.start();
await bot.prepareClient(); // eagerly register the bot
await use(bot);
},
});