15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import { MaterialPage } from './app.po';
|
|
|
|
describe('material App', function() {
|
|
let page: MaterialPage;
|
|
|
|
beforeEach(() => {
|
|
page = new MaterialPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|