nx/nx-dev/ui-common/src/lib/plugin-card.spec.tsx
2021-12-04 02:14:13 +00:00

17 lines
374 B
TypeScript

import { render } from '@testing-library/react';
import PluginCard from './plugin-card';
describe('PluginCard', () => {
it('should render successfully', () => {
const { baseElement } = render(
<PluginCard
name={'my plugin'}
description={'some description'}
url={'nx.dev'}
/>
);
expect(baseElement).toBeTruthy();
});
});