mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 21:19:01 +08:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import React = require('react');
|
|
import {render, cleanup} from 'react-testing-library';
|
|
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:switch', async () => {
|
|
const {
|
|
container
|
|
} = render(amisRender({
|
|
type: 'form',
|
|
title: 'The form',
|
|
controls: [
|
|
{
|
|
name: 'switch',
|
|
className: 'block',
|
|
label: '开关',
|
|
type: 'switch',
|
|
addable: true,
|
|
removeable: true,
|
|
minLength: 1,
|
|
maxLength: 4,
|
|
addButtonText: '新增',
|
|
draggable: true,
|
|
draggableTip: '可通过拖动每行中的【交换】按钮进行顺序调整',
|
|
value: true,
|
|
trueValue: true,
|
|
falseValue: false,
|
|
disabled: false,
|
|
option: 'switch',
|
|
optionAtLeft: false
|
|
}
|
|
],
|
|
submitText: null,
|
|
actions: []
|
|
}, {}, makeEnv()));
|
|
expect(container).toMatchSnapshot();
|
|
}); |