blob: 7768201c4620024ecdbe9c49c52a3ec3ecdf1100 [file] [log] [blame]
import { add } from "./main";
import { expect } from "@esm-bundle/chai";
describe("main tests", () => {
it("adds two numbers", () => {
expect(add(3, 5)).to.equal(8);
});
});