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:26 -04:00 committed by GitHub
parent bc458af611
commit dd321370a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -307,6 +307,9 @@ describe('duplicateCheck.vue', () => {
expect(saveSession).toHaveBeenCalledTimes(1);
expect(wrapper.vm.mainStore.loadSessionFromDuplicate).not.toHaveBeenCalled();
expect(wrapper.vm.mainStore.getCoveragePolicyInfo).toHaveBeenCalledTimes(1);
expect(saveSession.mock.invocationCallOrder[0]).toBeLessThan(
wrapper.vm.mainStore.getCoveragePolicyInfo.mock.invocationCallOrder[0]
);
});
test('Selected duplicate => load session called', async () => {