167171a682
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
10 lines
302 B
TypeScript
10 lines
302 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
describe('test infrastructure', () => {
|
|
it('renders React components in jsdom', () => {
|
|
render(<div>messaging-ui</div>);
|
|
expect(screen.getByText('messaging-ui')).toBeDefined();
|
|
});
|
|
});
|