mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
23 lines
610 B
TypeScript
23 lines
610 B
TypeScript
import React = require('react');
|
|
import NotFound from '../src/components/404';
|
|
import * as renderer from 'react-test-renderer';
|
|
import {render, fireEvent, cleanup} from '@testing-library/react';
|
|
|
|
afterEach(cleanup);
|
|
|
|
test('Components:404 default View', () => {
|
|
const component = renderer.create(<NotFound />);
|
|
let tree = component.toJSON();
|
|
|
|
expect(tree).toMatchSnapshot();
|
|
});
|
|
|
|
test('Components:404 Custom code & messages', () => {
|
|
const component = renderer.create(
|
|
<NotFound code={500} description="Internal Error" />
|
|
);
|
|
let tree = component.toJSON();
|
|
|
|
expect(tree).toMatchSnapshot();
|
|
});
|