mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
import { MyAppPage } from './app.po';
|
|
|
|
describe('my-app App', function() {
|
|
let page: MyAppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new MyAppPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|