blob: 914805e00c429e604d12acab8da0d3ccb605574b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { CatalogUiPage } from './app.po';
describe('catalog-ui App', function() {
let page: CatalogUiPage;
beforeEach(() => {
page = new CatalogUiPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});
|