zappyzep/revampdashboard/src/demo.spec.ts
laraproto 1dea7721e5
Some checks failed
Code quality checks / build (23) (push) Successful in 33s
Push code / build (push) Failing after 3s
was the presetup configuration even used, deploy new dashboard stuff
2024-11-02 15:51:07 +02:00

7 lines
152 B
TypeScript

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