mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-05 21:49:09 +08:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import React = require('react');
|
|
import {render, cleanup, fireEvent} from '@testing-library/react';
|
|
import '../../../src/themes/default';
|
|
import {render as amisRender} from '../../../src/index';
|
|
import {makeEnv} from '../../helper';
|
|
import {clearStoresCache} from '../../../src/factory';
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
clearStoresCache();
|
|
});
|
|
|
|
test('Renderer:button-toolbar', async () => {
|
|
const {getByText, container}: any = render(
|
|
amisRender(
|
|
{
|
|
type: 'form',
|
|
title: 'The form',
|
|
controls: [
|
|
{
|
|
type: 'button-toolbar',
|
|
buttons: [
|
|
{
|
|
type: 'button',
|
|
label: 'OpenDialog',
|
|
actionType: 'dialog',
|
|
dialog: {
|
|
confirmMode: false,
|
|
title: '提示',
|
|
body: '对,你刚点击了!'
|
|
}
|
|
},
|
|
{
|
|
type: 'submit',
|
|
label: 'Submit'
|
|
},
|
|
{
|
|
type: 'reset',
|
|
label: 'Reset'
|
|
}
|
|
]
|
|
}
|
|
],
|
|
submitText: null,
|
|
actions: []
|
|
},
|
|
{},
|
|
makeEnv({
|
|
getModalContainer: () => container
|
|
})
|
|
)
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
fireEvent.click(getByText(/OpenDialog/));
|
|
expect(container).toMatchSnapshot();
|
|
});
|