import * as React from 'react';
import CardHole from './CardHole';
import {render} from '@testing-library/react';
describe('', () => {
it('render', () => {
const cardHole = render(some text);
expect(cardHole.getByText('some text')).toBeTruthy();
});
});