File size: 200 Bytes
aa3b624
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { describe, expect, it } from "vitest";
import { sum } from "../src/sum";

describe("add", () => {
  it("should sum of 2 and 3 equals to 5", () => {
    expect(sum(2, 3)).toEqual(5);
  });
});