rename utils file to allow future more utils to be added

This commit is contained in:
Adina Parpalita
2017-11-08 23:38:20 +02:00
parent 91baaa5096
commit 609163d136
9 changed files with 24 additions and 28 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ import { browser } from 'protractor';
import { APP_ROUTES } from '../../configs';
import { LoginPage, LogoutPage, BrowsingPage } from '../../pages/pages';
import { LocalStorageUtility } from '../../utilities/local-storage';
import { Utils } from '../../utilities/utils';
import { RepoClient, NodeContentTree } from '../../utilities/repo-client/repo-client';
describe('Pagination', () => {
@@ -75,7 +75,7 @@ describe('Pagination', () => {
afterAll(done => {
logoutPage
.load()
.then(() => LocalStorageUtility.clear())
.then(() => Utils.clearLocalStorage())
.then(() => nodesApi.deleteNodes([ content.name ]))
.then(done);
});