initial commit

This commit is contained in:
Will Baumbach
2020-04-19 14:55:02 -04:00
commit ec9f05e7e1
30 changed files with 12889 additions and 0 deletions

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

@@ -0,0 +1,11 @@
import { browser, by, element } from 'protractor';
export class AppPage {
navigateTo() {
return browser.get(browser.baseUrl) as Promise<any>;
}
getTitleText() {
return element(by.css('app-root h1')).getText() as Promise<string>;
}
}