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