Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jeremy-Z 2026-07-08 08:43:05 -04:00 committed by GitHub
parent 0a2fc03a91
commit bc458af611
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -283,6 +283,9 @@ describe('navigation', () => {
// Assert
expect(saveSession).toHaveBeenCalledTimes(1);
expect(wrapper.vm.mainStore.getCoveragePolicyInfo).toHaveBeenCalledTimes(1);
expect(saveSession.mock.invocationCallOrder[0]).toBeLessThan(
wrapper.vm.mainStore.getCoveragePolicyInfo.mock.invocationCallOrder[0]
);
});
test('if duplicates found, does not call saveSession or getCoveragePolicyInfo', async () => {
// Arrange