Newer
Older
notification / e2e / src / app.e2e-spec.ts
LuisOlaya on 11 Aug 2020 287 bytes Initial commit
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');
  });
});