mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
34 lines
773 B
TypeScript
34 lines
773 B
TypeScript
|
import React from 'react';
|
||
|
import App from '..';
|
||
|
import mountTest from '../../../tests/shared/mountTest';
|
||
|
import rtlTest from '../../../tests/shared/rtlTest';
|
||
|
import { render } from '../../../tests/utils';
|
||
|
|
||
|
describe('App', () => {
|
||
|
mountTest(App);
|
||
|
rtlTest(App);
|
||
|
|
||
|
it('single', () => {
|
||
|
// Sub page
|
||
|
const MyPage = () => {
|
||
|
const { message } = App.useApp();
|
||
|
React.useEffect(() => {
|
||
|
message.success('Good!');
|
||
|
}, [message]);
|
||
|
|
||
|
return <div>Hello World</div>;
|
||
|
};
|
||
|
|
||
|
// Entry component
|
||
|
const MyApp = () => (
|
||
|
<App>
|
||
|
<MyPage />
|
||
|
</App>
|
||
|
);
|
||
|
|
||
|
const { getByText, container } = render(<MyApp />);
|
||
|
expect(getByText('Hello World')).toBeTruthy();
|
||
|
expect(container.firstChild).toMatchSnapshot();
|
||
|
});
|
||
|
});
|