import { describe, it, expect } from 'vitest';
import { render } from '@testing-library/react';
import { axe } from 'jest-axe';
function Hello() {
return ;
}
describe('a11y smoke', () => {
it('has no detectable violations', async () => {
const { container } = render();
const results = await axe(container);
expect(results).toHaveNoViolations();
});
});