react-text-loop
Version:
Create an animated loop of a list of text for your headings
11 lines • 311 B
JavaScript
import React from "react";
import { render, cleanup } from "@testing-library/react";
import TextLoop from "./TextLoop";
afterEach(function () {
cleanup();
});
describe("TextLoop Tests", function () {
it("should render without errors", function () {
render(React.createElement(TextLoop, null));
});
});