Skip to content

Instantly share code, notes, and snippets.

@AkshayCHD
Last active January 12, 2022 04:27
Show Gist options
  • Save AkshayCHD/2b3dd4e739c3ac3dfb7d802225a2cee8 to your computer and use it in GitHub Desktop.
Save AkshayCHD/2b3dd4e739c3ac3dfb7d802225a2cee8 to your computer and use it in GitHub Desktop.
const { saveUser } = require("../src/services/user.service");
describe("User Service Unit Tests", function () {
describe("Save User functionality", function () {
it("should successfully add a user if the number of users in the DB with the same profiled is zero", async function () {
const profileId = 1;
const name = "Akshay";
const dob = "2020-12-12";
const experience = [{ years: 2, organizationName: "ABCD" }];
const returnedUser = await saveUser({
profileId,
name,
dob,
experience,
});
expect(returnedUser.name).to.equal(name);
expect(returnedUser.dob.toString()).to.equal((new Date(dob)).toString());
experience.map((exp, index) => {
expect(returnedUser.experience[index].years).to.equal(exp.years);
expect(returnedUser.experience[index].organizationName).to.equal(exp.organizationName);
})
});
it("should throw an error if the number of users with the same profileId is not zero", async function () {});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment