feat(navBar): refs #7632 isLoading #844

Merged
alexm merged 5 commits from 7632-axios_isLoading into dev 2024-10-21 10:48:58 +00:00
1 changed files with 6 additions and 5 deletions
Showing only changes of commit f4caf6aecc - Show all commits

View File

@ -12,6 +12,7 @@ describe('useStateQueryStore', () => {
const { add, isLoading, remove, reset } = useStateQueryStore();
const firstQuery = { url: 'myQuery' };
alexm marked this conversation as resolved
Review

comentario: definimos baseQuery y luego ....baseQuery en cada variable?
Esto lo hemos hecho al definir columnas en VnTable, no?

comentario: definimos baseQuery y luego ....baseQuery en cada variable? Esto lo hemos hecho al definir columnas en VnTable, no?
const secondQuery = { url: 'myQuery' };
const thirdQuery = { url: 'myQuery' };
function getQueries() {
return stateQueryStore.queries;
@ -41,16 +42,16 @@ describe('useStateQueryStore', () => {
expect(isLoading().value).toBeFalsy();
});
it('should add and remove hash', async () => {
it('should add and remove query', async () => {
add(firstQuery);
add(secondQuery);
const beforeCount = getQueries().size;
const hash = add();
expect(getQueries().has(hash)).toBeTruthy();
add(thirdQuery);
expect(getQueries().has(thirdQuery)).toBeTruthy();
remove(hash);
expect(getQueries().has(hash)).toBeFalsy();
remove(thirdQuery);
expect(getQueries().has(thirdQuery)).toBeFalsy();
expect(getQueries().size).toBe(beforeCount);
});
});