mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import React = require('react');
|
|
import {render} from '@testing-library/react';
|
|
import '../../src/themes/default';
|
|
import {render as amisRender} from '../../src/index';
|
|
import {makeEnv} from '../helper';
|
|
|
|
test('Renderer:hbox', async () => {
|
|
const {container} = render(
|
|
amisRender(
|
|
{
|
|
type: 'hbox',
|
|
columns: [
|
|
{
|
|
type: 'tpl',
|
|
tpl: 'w-xs',
|
|
className: 'bg-info',
|
|
inline: false,
|
|
columnClassName: 'w-xs'
|
|
},
|
|
{
|
|
type: 'tpl',
|
|
tpl: 'w-sm',
|
|
className: 'bg-info lter',
|
|
inline: false,
|
|
columnClassName: 'w-sm'
|
|
},
|
|
{
|
|
type: 'tpl',
|
|
tpl: 'w',
|
|
className: 'bg-info dk',
|
|
inline: false,
|
|
columnClassName: 'w'
|
|
},
|
|
{
|
|
type: 'tpl',
|
|
tpl: '平均分配',
|
|
className: 'bg-success',
|
|
inline: false
|
|
},
|
|
{
|
|
type: 'tpl',
|
|
tpl: '平均分配',
|
|
className: 'bg-primary',
|
|
inline: false
|
|
}
|
|
]
|
|
},
|
|
{},
|
|
makeEnv({})
|
|
)
|
|
);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|