zappyzep/revampdashboard/src/demo.spec.ts

8 lines
152 B
TypeScript
Raw Normal View History

import { describe, it, expect } from "vitest";
describe("sum test", () => {
it("adds 1 + 2 to equal 3", () => {
expect(1 + 2).toBe(3);
});
});