fix: refs #8534 enhance stateQueryGuard to handle identical routes and improve test coverage

This commit is contained in:
Alex Moreno 2025-03-27 07:53:17 +01:00
parent d63c35192d
commit 9d53418e21
3 changed files with 8 additions and 6 deletions

View File

@ -17,10 +17,11 @@ vi.mock('src/stores/useStateQueryStore', () => {
describe('hooks', () => {
describe('stateQueryGuard', () => {
const foo = { name: 'foo' };
it('should wait until the state query is not loading and then call next()', async () => {
const next = vi.fn();
const guardPromise = stateQueryGuard(next);
const guardPromise = stateQueryGuard(foo, { name: 'bar' }, next);
expect(next).not.toHaveBeenCalled();
testStateQuery.isLoading.value = false;
@ -28,5 +29,11 @@ describe('hooks', () => {
await guardPromise;
expect(next).toHaveBeenCalled();
});
it('should ignore if both routes are the same', async () => {
const next = vi.fn();
stateQueryGuard(foo, foo, next);
expect(next).toHaveBeenCalled();
});
});
});

View File

@ -84,7 +84,6 @@ function waitUntilFalse(ref) {
const stop = watch(
ref,
(val) => {
console.log('val: ', val);
if (!val) {
stop();
resolve();

View File

@ -28,12 +28,8 @@ describe('EntryDescriptor', () => {
cy.get('.q-notification__message')
.eq(2)
.should('have.text', 'Entry prices recalculated');
cy.get('[data-cy="descriptor-more-opts"]').click();
cy.deleteEntry();
cy.log(previousUrl);
cy.visit(previousUrl);
cy.waitForElement('[data-cy="entry-buys"]');