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