import { describe, it, expect } from "vitest";

describe("smoke test", () => {
  it("vitest is wired up", () => {
    expect(1 + 1).toBe(2);
  });
});
