name changes part 2

This commit is contained in:
Katie Kroell 2024-01-11 12:15:02 -05:00
parent 373c1da2ac
commit 25bb899dc7
2 changed files with 3 additions and 3 deletions

View file

@ -223,7 +223,7 @@ describe('navigation', () => {
// Arrange // Arrange
const { wrapper } = getMountedComponent({}); const { wrapper } = getMountedComponent({});
useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({})); useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({}));
useMainStore().applicationUser.coverageAttempts = 11; useMainStore().applicationUser.coverageLookupAttempts = 11;
// Act // Act
await wrapper.vm.forwardButtonAction(); await wrapper.vm.forwardButtonAction();
@ -236,7 +236,7 @@ describe('navigation', () => {
// Arrange // Arrange
const { wrapper } = getMountedComponent({}); const { wrapper } = getMountedComponent({});
useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({})); useMainStore().getDuplicateReferrals = jest.fn().mockImplementation(() => Promise.resolve({}));
useMainStore().applicationUser.coverageAttempts = 10; useMainStore().applicationUser.coverageLookupAttempts = 10;
// Act // Act
await wrapper.vm.forwardButtonAction(); await wrapper.vm.forwardButtonAction();

View file

@ -310,7 +310,7 @@ export default {
return this.mainStore.issConfig.isCoverageEnabled; return this.mainStore.issConfig.isCoverageEnabled;
}, },
maxCoverageLookupAttemptsReached() { maxCoverageLookupAttemptsReached() {
return this.mainStore.applicationUser.coverageAttempts >= 11; return this.mainStore.applicationUser.coverageLookupAttempts >= 11;
} }
}, },
methods: { methods: {