import React from "react"; import { render } from "@testing-library/react-native"; import Video from "./video"; import { ThemeProvider } from "../../../theme/src/theme-context"; import { ResizeMode } from "expo-av"; jest.useFakeTimers(); describe("Atoms/Video", () => { it("passes the snapshot test", () => { const tree = render( ).toJSON(); expect(tree).toMatchSnapshot(); }); });