Increase test coverage for /modules/ui (#3314)
* Increase test coverage for `/modules/ui` Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: FellipeMTX <fellipefacdir@gmail.com> Co-authored-by: Fellipe Montes <102544529+FellipeMTX@users.noreply.github.com> * Merge main Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: FellipeMTX <fellipefacdir@gmail.com> Co-authored-by: Fellipe Montes <102544529+FellipeMTX@users.noreply.github.com> * Fix tests * Fix tests * Fix --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: FellipeMTX <fellipefacdir@gmail.com> Co-authored-by: Fellipe Montes <102544529+FellipeMTX@users.noreply.github.com> Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -0,0 +1,41 @@
|
||||
import { act } from 'react-dom/test-utils';
|
||||
import { renderHook } from '@testing-library/react';
|
||||
import { RecoilRoot } from 'recoil';
|
||||
|
||||
import { Icon123, IconApps } from '@/ui/display/icon';
|
||||
import { useIconPicker } from '@/ui/input/hooks/useIconPicker';
|
||||
|
||||
describe('useIconPicker', () => {
|
||||
it('should return correct iconPickerState', async () => {
|
||||
const { result } = renderHook(() => useIconPicker(), {
|
||||
wrapper: RecoilRoot,
|
||||
});
|
||||
|
||||
const { Icon, iconKey, setIconPicker } = result.current;
|
||||
|
||||
expect(Icon).toEqual(IconApps);
|
||||
expect(iconKey).toEqual('IconApps');
|
||||
expect(setIconPicker).toBeInstanceOf(Function);
|
||||
});
|
||||
|
||||
it('should update the icon', async () => {
|
||||
const { result } = renderHook(() => useIconPicker(), {
|
||||
wrapper: RecoilRoot,
|
||||
});
|
||||
|
||||
const { Icon, iconKey, setIconPicker } = result.current;
|
||||
|
||||
expect(Icon).toEqual(IconApps);
|
||||
expect(iconKey).toEqual('IconApps');
|
||||
expect(setIconPicker).toBeInstanceOf(Function);
|
||||
|
||||
await act(async () => {
|
||||
result.current.setIconPicker({ Icon: Icon123, iconKey: 'Icon123' });
|
||||
});
|
||||
|
||||
const { Icon: UpdatedIcon, iconKey: updatedIconKey } = result.current;
|
||||
|
||||
expect(UpdatedIcon).toEqual(Icon123);
|
||||
expect(updatedIconKey).toEqual('Icon123');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user