8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { describe, it, expect } from "vitest";
|
|
|
|
describe("sample-website", () => {
|
|
it("should pass basic health check", () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|