8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import { ${COMPONENT_NAME} } from '${IMPORT_PATH}';
|
|
|
|
describe('${COMPONENT_NAME}', () => {
|
|
${TEST_CASES}
|
|
});
|