Skip to content
Snippets Groups Projects
index.test.ts 218 B
Newer Older
  • Learn to ignore specific revisions
  • Zdravko Iliev's avatar
    Zdravko Iliev committed
    import { describe, it, expect } from "@jest/globals";
    import { add } from "../src";
    
    describe("index test", () => {
      it("should calculate sum", () => {
        const sum = add(2, 5);
        expect(sum).toEqual(7);
      });
    });