basic.test.ts 143 B

1234567
  1. import { describe, expect, it } from "vitest";
  2. describe("tests", () => {
  3. it("should works", () => {
  4. expect(1 + 1).toEqual(2);
  5. });
  6. });