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
+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();
}
}