Skip to content

Commit

Permalink
fix(test): end-to-end tests run full suite
Browse files Browse the repository at this point in the history
This commit removes the `describe.only()` tag from the user end to en
test so that all tests run.
  • Loading branch information
Jonathan Niles committed Oct 1, 2016
1 parent 7b2875c commit b659326
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/end-to-end/user/user.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ helpers.configure(chai);

const expect = chai.expect;

describe.only('User management page', function () {

describe('User management page', function () {
'use strict';

const path = '#/users';
const userPage = new UserPage();
const userCreateUpdatePage = new UserCreateUpdatePage();
Expand Down Expand Up @@ -57,7 +57,7 @@ describe.only('User management page', function () {
userCreateUpdatePage.submitUser();
expect(userPage.getUserCount()).to.eventually.equal(userCount + 1);
});

it('edits a user successfully without changing the password', function () {
userPage.editUser(4);
userCreateUpdatePage.setUserName(mockUserEdit.userName);
Expand All @@ -74,7 +74,7 @@ describe.only('User management page', function () {
**/
expect(userCreateUpdatePage.isDisplayed()).to.eventually.equal(false); //if every thing is good, the modal should disappear
});

it('edits a user password successfully', function () {
userPage.editUser(4);
userCreateUpdatePage.editPassword();
Expand Down Expand Up @@ -106,7 +106,7 @@ describe.only('User management page', function () {
editPasswordPage.cancelEditing();
userCreateUpdatePage.close();
});

it('validates form on creation', function () {
userPage.createUser();
userCreateUpdatePage.submitUser();
Expand Down

0 comments on commit b659326

Please sign in to comment.