From 97d93cf5949a8b858a0e079e0b94878d37af90e2 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Fri, 20 Oct 2023 14:40:54 -0400 Subject: [PATCH] test update --- src/store/store.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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));