File size: 158 Bytes
aa3b624
 
 
 
8869f63
aa3b624
 
1
2
3
4
5
6
7
8
import { describe, expect, it } from "vitest";

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