Socialify

Folder ..

Viewing app.e2e-spec.ts
14 lines (11 loc) • 287.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
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');
  });
});