mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-24 00:48:39 +08:00
18 lines
398 B
TypeScript
18 lines
398 B
TypeScript
import { render } from '@testing-library/react';
|
|
|
|
import App from './app';
|
|
|
|
describe('App', () => {
|
|
it('should render successfully', () => {
|
|
const { baseElement } = render(<App />);
|
|
|
|
expect(baseElement).toBeTruthy();
|
|
});
|
|
|
|
it('should have a greeting as the title', () => {
|
|
const { getByText } = render(<App />);
|
|
|
|
expect(getByText(/Welcome test-app/gi)).toBeTruthy();
|
|
});
|
|
});
|