Skip to content

Commit cf30140

Browse files
committed
uncomment skip test
1 parent 3888ed6 commit cf30140

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/usersFilter.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ describe("Filter Users", function () {
121121
});
122122

123123
// eslint-disable-next-line mocha/no-skipped-tests
124-
describe.skip("GET /users/search", function () {
124+
describe("GET /users/search", function () {
125125
it("Should search users based on state", function (done) {
126126
chai
127127
.request(app)
@@ -203,7 +203,7 @@ describe("Filter Users", function () {
203203
expect(res.body.message).to.equal("Users found successfully!");
204204
expect(res.body.users).to.be.a("array");
205205
expect(res.body.users.length).to.equal(2);
206-
assertUserIds(res.body.users, [activeUser, oooUser, idleUser]);
206+
assertUserIds(res.body.users, [oooUser, idleUser]);
207207
return done();
208208
});
209209
});

0 commit comments

Comments
 (0)