Skip to content

Commit 8e9414e

Browse files
committed
removed unwanted tests
1 parent 1f04c76 commit 8e9414e

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

test/unit/models/users.test.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,6 @@ describe("users", function () {
116116
expect(data.github_id).to.equal(userData.github_id);
117117
});
118118

119-
it("verifies the error text message", async function () {
120-
const userData = { ...userDataArray[0], github_id: 123 };
121-
122-
try {
123-
await users.addOrUpdate(userData);
124-
} catch (error) {
125-
expect(error.message).to.equal("Validation error: github_id must be a string");
126-
}
127-
});
128-
129119
it("github_user_id field should have a maximum length of 8 characters", async function () {
130120
const userData = { ...userDataArray[0], github_user_id: "a".repeat(9) };
131121

0 commit comments

Comments
 (0)