chore(package): update to stencil 0.14.1-1 (#15992)

This commit is contained in:
Adam Bradley
2018-10-17 15:01:37 -05:00
committed by GitHub
parent a8f0f0d6c9
commit 86d5f33841
15 changed files with 11 additions and 28 deletions

View File

@ -9,6 +9,8 @@ it('loading: basic', async () => {
const loading = await page.find('ion-loading');
expect(loading).not.toBeNull();
await loading.waitForVisible();
const compare = await page.compareScreenshot();
expect(compare).toMatchScreenshot();
});

View File

@ -9,6 +9,8 @@ it('loading: standalone', async () => {
const loading = await page.find('ion-loading');
expect(loading).not.toBeNull();
await loading.waitForVisible();
const compare = await page.compareScreenshot();
expect(compare).toMatchScreenshot();
});