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

describe('sanity', () => {
  it('math still works', () => {
    expect(1 + 1).toBe(2);
  });
});
