name changes part 2
This commit is contained in:
parent
373c1da2ac
commit
25bb899dc7
2 changed files with 3 additions and 3 deletions
|
|
@ -223,7 +223,7 @@ describe('navigation', () => {
|
|||
// Arrange
|
||||
const { wrapper } = getMountedComponent({});
|
||||
useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({}));
|
||||
useMainStore().applicationUser.coverageAttempts = 11;
|
||||
useMainStore().applicationUser.coverageLookupAttempts = 11;
|
||||
|
||||
// Act
|
||||
await wrapper.vm.forwardButtonAction();
|
||||
|
|
@ -236,7 +236,7 @@ describe('navigation', () => {
|
|||
// Arrange
|
||||
const { wrapper } = getMountedComponent({});
|
||||
useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({}));
|
||||
useMainStore().applicationUser.coverageAttempts = 10;
|
||||
useMainStore().applicationUser.coverageLookupAttempts = 10;
|
||||
|
||||
// Act
|
||||
await wrapper.vm.forwardButtonAction();
|
||||
|
|
|
|||
|
|
@ -310,7 +310,7 @@ export default {
|
|||
return this.mainStore.issConfig.isCoverageEnabled;
|
||||
},
|
||||
maxCoverageLookupAttemptsReached() {
|
||||
return this.mainStore.applicationUser.coverageAttempts >= 11;
|
||||
return this.mainStore.applicationUser.coverageLookupAttempts >= 11;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue