Skip to content

Commit

Permalink
Merge pull request #652 from Satellite-im/luis/fix-create-account
Browse files Browse the repository at this point in the history
test(update): fix step on test before reducing font size
  • Loading branch information
luisecm authored Mar 6, 2024
2 parents f9a2bdf + 86b9d2d commit 98a3248
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default async function createChatAccountsTests() {
// Grab cache folder and restart
const didkey = await settingsProfile.getCopiedDidFromStatusInput();
await saveTestKeys(username, didkey);
await settingsProfile.deleteStatus();
});

it("Chat User A - Settings General - Reduce font size", async () => {
Expand All @@ -78,7 +79,6 @@ export default async function createChatAccountsTests() {
await settingsGeneral.waitForIsShown(true);

// Click on font scaling minus button
await settingsGeneral.settingsGeneral.waitForExist();
await settingsGeneral.clickOnFontScalingMinus();
});

Expand Down Expand Up @@ -143,14 +143,15 @@ export default async function createChatAccountsTests() {
// Grab cache folder and restart
const didkey = await settingsProfile.getCopiedDidFromStatusInput();
await saveTestKeys(username, didkey);
await settingsProfile.deleteStatus();
});

it("Chat User B - Settings General - Reduce font size", async () => {
// Go to General Settings and reduce Font Size by 0.5
await settingsProfile.goToGeneralSettings();
await settingsGeneral.waitForIsShown(true);

// Click on font scaling minus
await settingsGeneral.waitForIsShown(true);
await settingsGeneral.clickOnFontScalingMinus();
});

Expand Down

0 comments on commit 98a3248

Please sign in to comment.