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