Migrate to Angular 4

This commit is contained in:
2017-10-01 03:55:01 +02:00
parent b9bcc26258
commit 31fd9f27e9
55 changed files with 947 additions and 581 deletions

11
dashboard/e2e/app.po.ts Normal file
View File

@@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}