Skip to content

Commit

Permalink
remove _id requirement from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Webster committed Sep 25, 2024
1 parent fb93137 commit 2394cc5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/user/signup.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ for (const validUserEmail of VALID_EMAILS) {
expect(includesNotIncludedKey).toBe(false);
expect(typeof returned.data.data.followers).toBe("number");
expect(typeof returned.data.data.following).toBe("number");
expect(typeof returned.data.data._id).toBe("string");
expect(await DB.changedCollections()).toIncludeSameMembers(['User', 'RefreshToken'])
})
}
Expand Down

0 comments on commit 2394cc5

Please sign in to comment.