Skip to content

Commit

Permalink
fix: absurd test error has been fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoehabb committed Dec 5, 2024
1 parent cf715eb commit fb28dd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/server/tests/api/call.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ describe("/api/v1/call", () => {
const membersIds = await adminApi.atlas.call.findCallMembers(call.id, "lesson");

// test results
console.log(membersIds, tutor.id)
expect(membersIds).to.have.length(1);
expect(membersIds).to.contains(call.id);
expect(membersIds).to.contains(tutor.id);
expect(membersIds).to.contain(tutor.id);
});

it("should NOT retrieve call data for an uneligable user", async () => {
Expand Down

0 comments on commit fb28dd2

Please sign in to comment.