import chai from "chai";
let expect = chai.expect;

export function add(a: number, b: number) {
  return a + b;
}

describe("From the simpel file", () => {
  describe("Testing add function", () => {
    const result = add(1, 1);
    it("Is 1+1 equal to 2?", () => {
      expect(result).is.equal(2);
    });
  });
});
