test: refs #8534 add unit tests for stateQueryGuard to ensure proper loading behavior
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
parent
44e5b136f0
commit
b5e9c381ad
|
@ -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();
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue