forked from p96170835/amis
28 lines
625 B
TypeScript
28 lines
625 B
TypeScript
|
import React = require('react');
|
||
|
import {render} from 'react-testing-library';
|
||
|
import '../../src/themes/default';
|
||
|
import {
|
||
|
render as amisRender
|
||
|
} from '../../src/index';
|
||
|
import { makeEnv } from '../helper';
|
||
|
|
||
|
test('Renderer:alert', () => {
|
||
|
const {
|
||
|
container
|
||
|
} = render(amisRender({
|
||
|
type: 'page',
|
||
|
body: {
|
||
|
type: 'alert',
|
||
|
level: 'success',
|
||
|
body: [
|
||
|
{
|
||
|
type: 'tpl',
|
||
|
tpl: '提示内容'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}, {}, makeEnv({
|
||
|
})));
|
||
|
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|