mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 21:19:01 +08:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import React = require('react');
|
|
import {render, fireEvent, waitFor} from '@testing-library/react';
|
|
import '../../src';
|
|
import {render as amisRender} from '../../src';
|
|
import {makeEnv, wait} from '../helper';
|
|
|
|
test('Renderer:carousel', async () => {
|
|
const {container} = render(
|
|
amisRender(
|
|
{
|
|
type: 'carousel',
|
|
controlsTheme: 'light',
|
|
width: '500',
|
|
height: '300',
|
|
options: [
|
|
{
|
|
image:
|
|
'https://internal-amis-res.cdn.bcebos.com/images/2019-12/1577157239810/da6376bf988c.png',
|
|
title: '标题',
|
|
titleClassName: 'block',
|
|
description: '描述',
|
|
descriptionClassName: 'block'
|
|
},
|
|
{
|
|
html: '<div style="width: 100%; height: 300px; background: #e3e3e3; text-align: center; line-height: 300px;">carousel data</div>'
|
|
},
|
|
{
|
|
image:
|
|
'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=3893101144,2877209892&fm=23&gp=0.jpg'
|
|
}
|
|
],
|
|
className: 'show'
|
|
},
|
|
{},
|
|
makeEnv({})
|
|
)
|
|
);
|
|
|
|
const image = container.querySelector('div.cxd-Carousel-item');
|
|
fireEvent.mouseEnter(image as HTMLDivElement);
|
|
const leftArrow = container.querySelector('div.cxd-Carousel-leftArrow');
|
|
fireEvent.click(leftArrow as HTMLDivElement);
|
|
const rightArrow = container.querySelector('div.cxd-Carousel-rightArrow');
|
|
fireEvent.click(rightArrow as HTMLDivElement);
|
|
|
|
// 等到第二个点变成激活状态
|
|
await waitFor(() => {
|
|
expect(
|
|
container.querySelector('span:nth-child(2).is-active')
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|