mirror of
https://github.com/farcasclaudiu/kanban2.git
synced 2026-06-22 09:01:38 +03:00
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import { ValuationJsPage } from './app.po';
|
|
|
|
describe('kanban2 App', function() {
|
|
let page: ValuationJsPage;
|
|
|
|
beforeEach(() => {
|
|
page = new ValuationJsPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|