forked from femioladeji/react-slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-utils.js
More file actions
60 lines (56 loc) · 1.37 KB
/
test-utils.js
File metadata and controls
60 lines (56 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import React from 'react'
import { render } from 'react-testing-library';
import { Fade, Zoom, Slide } from './src/lib';
export const images = [
'images/slide_5.jpg',
'images/slide_6.jpg',
'images/slide_7.jpg'
];
export const renderFade = (props = {}, container) => {
let options = {};
if (container) {
options = {
container: document.body.appendChild(container),
baseElement: container
}
}
let slideShow = render(
<Fade {...props}>
{images.map((each, index) => (
<img key={index} src={each} />
))}
</Fade>, options);
return slideShow;
}
export const renderZoom = (props = {}, container) => {
let options = {};
if (container) {
options = {
container: document.body.appendChild(container),
baseElement: container
}
}
let slideShow = render(
<Zoom {...props}>
{images.map((each, index) => (
<img key={index} src={each} />
))}
</Zoom>, options);
return slideShow;
}
export const renderSlide = (props = {}, container) => {
let options = {};
if (container) {
options = {
container: document.body.appendChild(container),
baseElement: container
}
}
let slideShow = render(
<Slide {...props}>
{images.map((each, index) => (
<img key={index} src={each} />
))}
</Slide>, options);
return slideShow;
}