You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/pages/Wanted/wanted.test.tsx

17 lines
330 B

import { renderTest, RenderTestCase } from "@/tests/render";
import WantedMoviesView from "./Movies";
import WantedSeriesView from "./Series";
const cases: RenderTestCase[] = [
{
name: "movie page",
ui: WantedMoviesView,
},
{
name: "series page",
ui: WantedSeriesView,
},
];
renderTest("Wanted", cases);