2019-07-04 16:24:13 +08:00
|
|
|
import React = require('react');
|
2021-06-03 13:05:35 +08:00
|
|
|
import {render} from '@testing-library/react';
|
2019-07-04 16:24:13 +08:00
|
|
|
import '../../src/themes/default';
|
2021-06-03 13:05:35 +08:00
|
|
|
import {render as amisRender} from '../../src/index';
|
|
|
|
import {makeEnv} from '../helper';
|
2019-07-04 16:24:13 +08:00
|
|
|
|
|
|
|
test('Renderer:hbox', async () => {
|
2021-06-03 13:05:35 +08:00
|
|
|
const {container} = render(
|
|
|
|
amisRender(
|
|
|
|
{
|
2019-07-04 16:24:13 +08:00
|
|
|
type: 'hbox',
|
|
|
|
columns: [
|
2021-06-03 13:05:35 +08:00
|
|
|
{
|
|
|
|
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
|
|
|
|
}
|
2019-07-04 16:24:13 +08:00
|
|
|
]
|
2021-06-03 13:05:35 +08:00
|
|
|
},
|
|
|
|
{},
|
|
|
|
makeEnv({})
|
|
|
|
)
|
|
|
|
);
|
2019-07-04 16:24:13 +08:00
|
|
|
|
2021-06-03 13:05:35 +08:00
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|