From 6e4faebf3cb76ec7cfced46b3ffda649e0d0fc22 Mon Sep 17 00:00:00 2001 From: simeng-li Date: Fri, 21 Jun 2024 14:25:05 +0800 Subject: [PATCH] chore(test): add devFeature test add devFeature test --- .../sign-in-with-password-verification/happy-path.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/integration-tests/src/tests/api/experience-api/sign-in-with-password-verification/happy-path.test.ts b/packages/integration-tests/src/tests/api/experience-api/sign-in-with-password-verification/happy-path.test.ts index 89a47f1b9982..9e9df8efa8ba 100644 --- a/packages/integration-tests/src/tests/api/experience-api/sign-in-with-password-verification/happy-path.test.ts +++ b/packages/integration-tests/src/tests/api/experience-api/sign-in-with-password-verification/happy-path.test.ts @@ -2,6 +2,7 @@ import { deleteUser } from '#src/api/admin-user.js'; import { signInWithPassword } from '#src/helpers/experience/index.js'; import { enableAllPasswordSignInMethods } from '#src/helpers/sign-in-experience.js'; import { generateNewUser } from '#src/helpers/user.js'; +import { devFeatureTest } from '#src/utils.js'; const signInIdentifiersType: readonly ['username', 'email', 'phone'] = Object.freeze([ 'username', @@ -15,7 +16,7 @@ const identifiersTypeToUserProfile = Object.freeze({ phone: 'primaryPhone', }); -describe('Sign-in with password verification happy path', () => { +devFeatureTest.describe('Sign-in with password verification happy path', () => { beforeAll(async () => { await enableAllPasswordSignInMethods(); });