mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Incorporate new toasts into end-to-end tests
This commit is contained in:
parent
21d5700501
commit
86cb3cf93f
1 changed files with 7 additions and 1 deletions
|
@ -24,8 +24,14 @@ module.exports = async function toastScenarios(alice, bob) {
|
|||
await rejectToast(alice, "Notifications");
|
||||
alice.log.done();
|
||||
|
||||
alice.log.step(`accepts rebrand toast`);
|
||||
await acceptToast(alice, "Riot is now Element!");
|
||||
const doneButton = await alice.query('.mx_Dialog_primary');
|
||||
await doneButton.click(); // also accept the resulting dialog
|
||||
alice.log.done();
|
||||
|
||||
alice.log.step(`accepts analytics toast`);
|
||||
await acceptToast(alice, "Help us improve Riot");
|
||||
await acceptToast(alice, "Help us improve Element");
|
||||
alice.log.done();
|
||||
|
||||
alice.log.step(`checks no remaining toasts`);
|
||||
|
|
Loading…
Reference in a new issue