const { expect } = require("chai"); describe("Calculator", function () { describe("Add", function () { it("Should return 3 when a = 1 and b = 2", () => { expect(2 + 1).to.equal(3); }); }); });