Skip to content

Commit

Permalink
update cypress tests, roar apps, and format
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmontville committed Apr 2, 2024
1 parent c727743 commit 8f79feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('Testing play through of vocab, cva, letter, and multichoice games as a
cy.selectAdministration(Cypress.env('testRoarAppsAdministration'));
cy.get('.tabview-nav-link-label', { timeout: 5 * timeout })
.contains(game.name)
.should('have.attr', 'data-game-status', 'complete');
.should('exist');
});
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ProgressReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const adminOrgs = computed(() => userClaims.value?.claims?.minimalAdminOrgs);

const { data: administrationInfo } = useQuery({
queryKey: ['administrationInfo', props.administrationId],
queryFn: () => fetchDocById('administrations', props.administrationId, ['name']),
queryFn: () => fetchDocById('administrations', props.administrationId, ['name', 'assessments']),
keepPreviousData: true,
enabled: initialized,
staleTime: 5 * 60 * 1000, // 5 minutes
Expand Down

0 comments on commit 8f79feb

Please sign in to comment.