1
0

angular and node server

This commit is contained in:
Anthony Sgueglia
2020-03-25 12:20:01 -04:00
commit ca168ac9e2
41 changed files with 22743 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 RockPaperScissorsPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}