File size: 1,030 Bytes
1e92f2d |
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 |
import React from "react";
import { render, fireEvent } from "@testing-library/react";
import { html as beautify_html } from "js-beautify";
import {
activeSlide,
clickNext,
clickPrevious,
getButtons,
getCurrentSlide
} from "../../test-utils";
import FocusOnSelect from "../FocusOnSelect";
describe("FocusOnSelect Tests", () => {
test("Activity Test", () => {
const { container } = render(<FocusOnSelect />);
expect(
parseInt(getCurrentSlide(container).getAttribute("data-index"))
).toEqual(0);
// expect(beautify_html(toString(container))).toMatchSnapshot();
Array.from(container.getElementsByClassName("slick-slide")).map(e =>
e.getAttribute("data-index") == "2"
? fireEvent(
e,
new MouseEvent("click", { bubbles: true, cancelable: true })
)
: null
);
expect(
parseInt(getCurrentSlide(container).getAttribute("data-index"))
).toEqual(2);
//expect(beautify_html(toString(container))).toMatchSnapshot();
});
});
|