diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-05 14:03:39 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-09-05 14:03:39 -0700 |
commit | 52f3810e81e6c96ef72876f3394f5a8eaf49a1b3 (patch) | |
tree | c09e95bb0f48aa2c780bf7363fa562e7dd6f6883 /__e2e__/tests/create-account.test.ts | |
parent | 411c1581f6e78898132baeae650365f3432f2a30 (diff) | |
download | voidsky-52f3810e81e6c96ef72876f3394f5a8eaf49a1b3.tar.zst |
Update tests
Diffstat (limited to '__e2e__/tests/create-account.test.ts')
-rw-r--r-- | __e2e__/tests/create-account.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/__e2e__/tests/create-account.test.ts b/__e2e__/tests/create-account.test.ts index 8706fae7c..f6ab0a498 100644 --- a/__e2e__/tests/create-account.test.ts +++ b/__e2e__/tests/create-account.test.ts @@ -25,7 +25,9 @@ describe('Create account', () => { await element(by.id('handleInput')).typeText('e2e-test') await device.takeScreenshot('4- entered handle') await element(by.id('nextBtn')).tap() - await expect(element(by.id('welcomeScreen'))).toBeVisible() + await expect(element(by.id('welcomeOnboarding'))).toBeVisible() + await element(by.id('continueBtn')).tap() + await expect(element(by.id('recommendedFeedsOnboarding'))).toBeVisible() await element(by.id('continueBtn')).tap() await expect(element(by.id('homeScreen'))).toBeVisible() }) |