Skip to content

Commit

Permalink
putting the original render call back
Browse files Browse the repository at this point in the history
  • Loading branch information
travjenkins committed Feb 14, 2024
1 parent 907e824 commit 065c441
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/connectors/__tests__/ConnectorTiles.test.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { customRender, renderOps } from 'test/test-utils';
import { render } from '@testing-library/react';
import { renderOps } from 'test/test-utils';
import ConnectorTiles from '../ConnectorTiles';

describe('Connector Tiles', () => {
it('should display the connector details', async () => {
const { view } = await customRender(<ConnectorTiles />, renderOps);
const rendered = render(<ConnectorTiles />, renderOps);

expect(view).toMatchSnapshot();
expect(rendered.baseElement).toMatchSnapshot();
});
});

0 comments on commit 065c441

Please sign in to comment.