fix e2e tests

This commit is contained in:
Denys Vuika
2017-10-19 16:26:52 +01:00
parent fd74683a27
commit 027aeca81d
15 changed files with 56 additions and 39 deletions
+2 -1
View File
@@ -15,6 +15,7 @@
* limitations under the License.
*/
import { promise } from 'protractor';
import { Header, DataTable, Pagination, Toolbar, Sidenav } from '../components/components';
import { Page } from './page';
@@ -25,7 +26,7 @@ export class BrowsingPage extends Page {
dataTable = new DataTable(this.app);
pagination = new Pagination(this.app);
signOut(): Promise<void> {
signOut(): promise.Promise<void> {
return this.header.userInfo.signOut();
}
}