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