mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-12 04:53:51 +02:00
restructure for backend/frontend separation
This commit is contained in:
11
frontend/ng-karaoqueue/e2e/src/app.po.ts
Normal file
11
frontend/ng-karaoqueue/e2e/src/app.po.ts
Normal 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 .content span')).getText() as Promise<string>;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user