blob: 653b7b7e2c0715803b2bb9f1831b42106e63620b [file] [log] [blame]
import { add, multiply, subtract } from "./main";
import { expect } from "@esm-bundle/chai";
describe("main tests", () => {
it("subtracts two numbers", () => {
expect(subtract(3, 5)).to.equal(-2);
});
it("adds two numbers", () => {
expect(add(3, 5)).to.equal(8);
});
it("subtracts two number", () => {
expect(subtract(5, 3)).to.equal(2);
});
it("multiplies two number", () => {
expect(multiply(5, 3)).to.equal(15);
});
});