Files
MermsProviders/e2e/src/app.e2e-spec.ts
T
2020-11-07 08:37:32 -05:00

15 lines
287 B
TypeScript

import { AppPage } from './app.po';
describe('new App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should be blank', () => {
page.navigateTo();
expect(page.getParagraphText()).toContain('Start with Ionic UI Components');
});
});