import { describe, it, expect } from 'vitest';
import { render, screen } from '@testing-library/react';
import React from 'react';
function HelloWorld() {
return
Hello, BrainWaves!
;
}
describe('sanity check', () => {
it('renders a basic component', () => {
render();
expect(screen.getByTestId('hello')).toBeInTheDocument();
});
});