Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedmonkey committed May 29, 2020
1 parent 9fbfa21 commit 7113fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/specs/admin/admin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe( 'Settings', () => {
await page.evaluate( selector => {
document.querySelector( selector ).click();
}, btnSelect );
await page.waitForNavigation()
await page.waitForNavigation();
} );

it( 'page input exist', async () => {
Expand All @@ -40,7 +40,7 @@ describe( 'Settings', () => {
await page.evaluate( selector => {
document.querySelector( selector ).click();
}, btnSelect );
await page.waitForNavigation()
await page.waitForNavigation();

const NO_RESULTS = '.notice-error.notice-unsplash';
await page.waitForSelector( NO_RESULTS );
Expand Down

0 comments on commit 7113fe9

Please sign in to comment.