import { render, screen } from '@testing-library/react'; import { describe, expect, it } from 'vitest'; import { OneTimePasswordInput } from './OneTimePasswordInput.tsx'; type Props = React.ComponentPropsWithoutRef; const TEST_ID = 'OneTimePasswordInput'; const TestOneTimePasswordInput: React.FC> = (props) => { return ; }; describe('OneTimePasswordInput', () => { it('should render', () => { render(); expect(screen.getByTestId(TEST_ID)).toBeInTheDocument(); }); });