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

16 lines
345 B
TypeScript
Raw Normal View History

import {TestProjectPage} from "./app.po";
describe('test-project App', () => {
let page: TestProjectPage;
beforeEach(() => {
page = new TestProjectPage();
});
2017-06-11 15:40:51 +08:00
it('should display welcome message', async (done) => {
page.navigateTo();
2017-06-11 15:40:51 +08:00
expect(await page.getParagraphText()).toEqual('Welcome to app!!');
done();
});
});