mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
This change drops the use of ReactDOM which is not supported in React 18. We also fix any test warnings related to i18next.
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import React from "react";
|
|
|
|
import { render } from "@testing-library/react";
|
|
|
|
import AppStoreBadges from "@components/AppStoreBadges";
|
|
|
|
it("renders without crashing", () => {
|
|
render(<AppStoreBadges iconSize={32} appleStoreLink="http://apple" googlePlayLink="http://google" />);
|
|
});
|