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:
gitstart-twenty
2024-01-11 08:51:36 +01:00
committed by GitHub
parent f34516d422
commit ebe8698910
48 changed files with 1652 additions and 55 deletions

View File

@ -0,0 +1,64 @@
import { act } from 'react-dom/test-utils';
import { renderHook } from '@testing-library/react';
import { RecoilRoot, useRecoilValue } from 'recoil';
import { stepBarInternalState } from '../../states/stepBarInternalState';
import { useStepBar } from '../useStepBar';
const renderHooks = (initialStep: number) => {
const { result } = renderHook(
() => {
const { nextStep, prevStep, reset, setStep } = useStepBar({
initialStep,
});
const stepBarInternal = useRecoilValue(stepBarInternalState);
return {
nextStep,
prevStep,
reset,
setStep,
stepBarInternal,
};
},
{
wrapper: RecoilRoot,
},
);
return { result };
};
const initialState = { activeStep: 0 };
describe('useStepBar', () => {
it('Should update active step', async () => {
const { result } = renderHooks(0);
expect(result.current.stepBarInternal).toEqual(initialState);
await act(async () => {
result.current.nextStep();
});
expect(result.current.stepBarInternal).toEqual({ activeStep: 1 });
await act(async () => {
result.current.prevStep();
});
expect(result.current.stepBarInternal).toEqual(initialState);
await act(async () => {
result.current.setStep(8);
});
expect(result.current.stepBarInternal).toEqual({ activeStep: 8 });
await act(async () => {
result.current.reset();
});
expect(result.current.stepBarInternal).toEqual({ activeStep: 0 });
});
});