Files
twenty/front/src/pages/auth/__tests__/Callback.test.tsx
2023-04-21 17:31:17 +02:00

11 lines
283 B
TypeScript

import { render } from '@testing-library/react';
import { CallbackDefault } from '../__stories__/Callback.stories';
import { act } from 'react-dom/test-utils';
it('Checks the Callback page render', async () => {
await act(async () => {
render(<CallbackDefault />);
});
});