Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
unlikelyzero committed Feb 22, 2024
1 parent 86a32e1 commit 7bc4d9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/tests/mobile/smoke.e2e.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ test('Remove Object and confirmation dialog @mobile', async ({ page }) => {
//Clicking on the search result takes you to the object
await page.getByLabel('Object Results').getByText('Parent Display Layout').click();
await page.getByTitle('Collapse Browse Pane').click();
expect(page.getByRole('main').getByText('Parent Display Layout')).toBeVisible();
await expect(page.getByRole('main').getByText('Parent Display Layout')).toBeVisible();

//Verify both objects are in view
expect(await page.getByLabel('Child Layout 1 Layout')).toBeVisible();
expect(await page.getByLabel('Child Layout 2 Layout')).toBeVisible();
await expect(await page.getByLabel('Child Layout 1 Layout')).toBeVisible();
await expect(await page.getByLabel('Child Layout 2 Layout')).toBeVisible();

//Remove First Object to bring up confirmation dialog
await page.getByLabel('View menu items').nth(1).click();
Expand Down

0 comments on commit 7bc4d9f

Please sign in to comment.