tests(): add missing test statements (#18346)

This commit is contained in:
Liam DeBeasi
2019-05-22 12:31:04 -04:00
committed by GitHub
parent d13983451a
commit 4be8d7e622
2 changed files with 3 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ test('item: inputs', async () => {
// Disable everything
await page.click('#btnDisabled');
await page.waitFor(500);
// check form
await page.click('#submit');

View File

@@ -54,6 +54,8 @@ test('select: basic', async () => {
compares.push(await page.compareScreenshot('should open custom popover select'));
await popover.callMethod('dismiss');
// Custom Action Sheet Select
select = await page.find('#customActionSheetSelect');
await select.click();