1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

fixing e2e test error

This commit is contained in:
Braun Patrik 2017-06-11 09:40:51 +02:00
parent dc3a97ac6c
commit b7c8570249

View File

@ -7,8 +7,9 @@ describe('test-project App', () => {
page = new TestProjectPage();
});
it('should display welcome message', () => {
it('should display welcome message', async (done) => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to app!!');
expect(await page.getParagraphText()).toEqual('Welcome to app!!');
done();
});
});