From b8b5774ca71a3edb1a0ee49a3f7e588f7fb7bd9c Mon Sep 17 00:00:00 2001 From: LEGO Technix <109212476+lego-technix@users.noreply.github.com> Date: Fri, 7 Mar 2025 18:53:06 +0100 Subject: [PATCH] test(api): better test context name --- .../usecases/create-reset-password-demand.usecase.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/identity-access-management/integration/domain/usecases/create-reset-password-demand.usecase.test.js b/api/tests/identity-access-management/integration/domain/usecases/create-reset-password-demand.usecase.test.js index 84c23421960..edeb1f21a9b 100644 --- a/api/tests/identity-access-management/integration/domain/usecases/create-reset-password-demand.usecase.test.js +++ b/api/tests/identity-access-management/integration/domain/usecases/create-reset-password-demand.usecase.test.js @@ -45,7 +45,7 @@ describe('Integration | Identity Access Management | Domain | UseCase | create-r }); }); - context('when user account does not exist with given email', function () { + context('when no user account with a matching email exist', function () { it('does not create a reset password demand', async function () { // given const unknownEmail = 'unknown@example.net';