diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 22455c67..1fc3f4ed 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -1169,8 +1169,9 @@ describe('Store', () => { }); }); describe('unsuccessful api call', () => { - it('api call throws exception', async () => { + it.only('api call throws exception', async () => { // Arrange + expect.assertions(2); const error = 'final deductible error'; globalMethods.callHttpClient = jest.fn().mockReturnValue(Promise.reject(error));