Skip to content

Commit

Permalink
remove an ID matcher from the basic test
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkrives committed Jan 24, 2023
1 parent 70a77c8 commit 1f553a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/basic-smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ test('should show the settings screen after tap', async () => {
test('should show home screen after tap to exit settings screen', async () => {
await element(by.id('button-open-settings')).tap()
await expect(element(by.id('screen-homescreen'))).not.toBeVisible()
await element(by.id('button-close-screen')).tap()
await element(by.text('Done')).tap()
await expect(element(by.id('screen-homescreen'))).toBeVisible()
})

0 comments on commit 1f553a3

Please sign in to comment.