Starting commit for e2e and unit tests

This commit is contained in:
Matteo Perelli
2016-12-15 10:35:21 +01:00
parent 6c51618a2a
commit de3f67e835
6 changed files with 77 additions and 1 deletions

14
e2e/app.e2e-spec.ts Normal file
View File

@@ -0,0 +1,14 @@
import { ProtractorPage } from './app.po';
describe('protractor App', function() {
let page: ProtractorPage;
beforeEach(() => {
page = new ProtractorPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});