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

describe('Should always pass', () => {
  test('adds 1 + 2 to equal 3', () => {
    expect(1 + 2).toBe(3);
  });
});
