Blame view

e2e/app.e2e-spec.ts 315 Bytes
25ec1989   angular-cli   chore: initial co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  import { MainMapsPage } from './app.po';
  
  describe('main-maps App', function() {
    let page: MainMapsPage;
  
    beforeEach(() => {
      page = new MainMapsPage();
    });
  
    it('should display message saying app works', () => {
      page.navigateTo();
      expect(page.getParagraphText()).toEqual('app works!');
    });
  });