poker-chips-helper/components/__tests__/ChipDetection.test.tsx

19 lines
453 B
TypeScript

import ChipDetection from "@/components/ChipDetection";
import { render } from "@testing-library/react-native";
import React from "react";
const totalChipsCount: number[] = [];
const mockSetTotalChipsCount = jest.fn();
const rend = render(
<ChipDetection
totalChipsCount={totalChipsCount}
setTotalChipsCount={mockSetTotalChipsCount}
/>
);
describe("tests for ChipDetection", () => {
it.todo("first test");
it.todo("second test");
});