import {describe, it, expect} from 'vitest' describe('My First Test', function () { it('shall pass', () => { expect(1).toBe(1); }) });