mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 21:19:01 +08:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import React = require('react');
|
|
import {render, fireEvent} from 'react-testing-library';
|
|
import '../../../src/themes/default';
|
|
import {
|
|
render as amisRender
|
|
} from '../../../src/index';
|
|
import { makeEnv } from '../../helper';
|
|
|
|
test('Renderer:fieldSet', async () => {
|
|
const {
|
|
container
|
|
} = render(amisRender({
|
|
type: 'form',
|
|
api: '/api/xxx',
|
|
controls: [
|
|
{
|
|
type: 'fieldSet',
|
|
name: 'a',
|
|
label: 'fieldSet',
|
|
mode: 'horizontal',
|
|
collapsable: true,
|
|
collapsed: false,
|
|
className: 'no-border',
|
|
headingClassName: 'bg-dark',
|
|
bodyClassName: 'bg-white',
|
|
horizontal: {
|
|
leftFixed: 1,
|
|
left: 4,
|
|
right: 7
|
|
},
|
|
controls: [
|
|
{
|
|
name: 'text',
|
|
type: 'text',
|
|
}
|
|
]
|
|
}
|
|
],
|
|
title: 'The form',
|
|
actions: []
|
|
}, {}, makeEnv({
|
|
})));
|
|
|
|
expect(container).toMatchSnapshot();
|
|
}); |