reset selection after each test (#335)

This commit is contained in:
Cilibiu Bogdan
2018-04-27 19:46:01 +01:00
committed by Denys Vuika
parent 800c0ffd67
commit bf4536fec5
@@ -544,6 +544,10 @@ describe('Toolbar actions - single selection : ', () => {
.then(done);
});
afterEach(() => {
dataTable.clearSelection();
});
afterAll(done => {
logoutPage.load().then(done);
});
@@ -588,6 +592,10 @@ describe('Toolbar actions - single selection : ', () => {
.then(done);
});
afterEach(() => {
dataTable.clearSelection();
});
afterAll(done => {
logoutPage.load().then(done);
});