restore all tets

This commit is contained in:
Denys Vuika
2018-09-20 13:48:34 +01:00
parent 01a3125374
commit 82ff2b99a5

View File

@@ -31,7 +31,7 @@ import { RepoClient } from '../../utilities/repo-client/repo-client';
import { Utils } from '../../utilities/utils'; import { Utils } from '../../utilities/utils';
fdescribe('Page titles', () => { describe('Page titles', () => {
const loginPage = new LoginPage(); const loginPage = new LoginPage();
const logoutPage = new LogoutPage(); const logoutPage = new LogoutPage();
const page = new BrowsingPage(); const page = new BrowsingPage();
@@ -48,7 +48,6 @@ fdescribe('Page titles', () => {
loginPage.load() loginPage.load()
.then(() => { .then(() => {
expect(browser.getTitle()).toContain('Sign in'); expect(browser.getTitle()).toContain('Sign in');
expect(true).toBe(false);
}); });
}); });