[ACA] e2e remove not needed logoutPage (#772)

* remove not needed logoutPage

* disable back failing check

* fix failing test
This commit is contained in:
Adina Parpalita
2018-11-02 12:37:07 +02:00
committed by Denys Vuika
parent 2c9e68ada7
commit 946e3e2196
50 changed files with 81 additions and 298 deletions

View File

@@ -23,7 +23,7 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
import { LoginPage, LogoutPage, BrowsingPage } from '../../pages/pages';
import { LoginPage, BrowsingPage } from '../../pages/pages';
import { InfoDrawer } from './../../components/info-drawer/info-drawer';
import { RepoClient } from '../../utilities/repo-client/repo-client';
import { EXTENSIBILITY_CONFIGS } from '../../configs';
@@ -65,7 +65,6 @@ describe('Extensions - Info Drawer', () => {
const infoDrawer = new InfoDrawer();
const loginPage = new LoginPage();
const logoutPage = new LogoutPage();
const page = new BrowsingPage();
beforeAll(async (done) => {
@@ -93,11 +92,6 @@ describe('Extensions - Info Drawer', () => {
done();
});
afterAll(async (done) => {
await logoutPage.load();
done();
});
it('Add a new tab with icon and title - [C284646]', async () => {
await page.dataTable.selectItem(file);
await page.toolbar.getButtonByTitleAttribute('View details').click();
@@ -154,11 +148,6 @@ describe('Extensions - Info Drawer', () => {
done();
});
afterAll(async (done) => {
await logoutPage.load();
done();
});
it('Remove all tabs - [C284650]', async () => {
await page.dataTable.selectItem(file);
await page.toolbar.getButtonByTitleAttribute('View details').click();