test: refs #8534 add unit tests for stateQueryGuard to ensure proper loading behavior
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Alex Moreno 2025-03-23 11:59:53 +01:00
parent 44e5b136f0
commit b5e9c381ad
1 changed files with 11 additions and 9 deletions

View File

@ -15,16 +15,18 @@ vi.mock('src/stores/useStateQueryStore', () => {
};
});
describe('stateQueryGuard', () => {
it('espera a que isLoading sea false antes de llamar a next()', async () => {
const next = vi.fn();
describe('hooks', () => {
describe('stateQueryGuard', () => {
it('should wait until the state query is not loading and then call next()', async () => {
const next = vi.fn();
const guardPromise = stateQueryGuard(next);
expect(next).not.toHaveBeenCalled();
const guardPromise = stateQueryGuard(next);
expect(next).not.toHaveBeenCalled();
testStateQuery.isLoading.value = false;
await nextTick();
await guardPromise;
expect(next).toHaveBeenCalled();
testStateQuery.isLoading.value = false;
await nextTick();
await guardPromise;
expect(next).toHaveBeenCalled();
});
});
});