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:
parent
0a2fc03a91
commit
bc458af611
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue