Initial commit by angular2-firebase-bootstrap generator

This commit is contained in:
2017-02-20 18:36:42 +02:00
commit 5093cff1da
44 changed files with 1266 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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!');
});
});
+11
View File
@@ -0,0 +1,11 @@
import { browser, element, by } from 'protractor';
export class ValuationJsPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}
+16
View File
@@ -0,0 +1,16 @@
{
"compileOnSave": false,
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/out-tsc-e2e",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}