import { describe, it, expect } from "vitest";
describe("something", () => {
  it("should", () => {
    expect(true).toBe(true);
  });
});
