Initial commit

This commit is contained in:
2017-05-20 21:03:14 -04:00
commit 38518e4ba5
31 changed files with 725 additions and 0 deletions

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

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