CytoSight / src /test /example.test.ts
Kaifulimaan's picture
Deployment without binary files
894fa47
raw
history blame contribute delete
143 Bytes
import { describe, it, expect } from "vitest";
describe("example", () => {
it("should pass", () => {
expect(true).toBe(true);
});
});