app.e2e-spec.ts 292 B

1234567891011121314
  1. import { AppPage } from './app.po';
  2. describe('health-new App', () => {
  3. let page: AppPage;
  4. beforeEach(() => {
  5. page = new AppPage();
  6. });
  7. it('should display welcome message', () => {
  8. page.navigateTo();
  9. expect(page.getParagraphText()).toEqual('Welcome to app!');
  10. });
  11. });