Skip to content

Commit

Permalink
chore(test): add devFeature test
Browse files Browse the repository at this point in the history
add devFeature test
  • Loading branch information
simeng-li committed Jun 24, 2024
1 parent 561bcfc commit 9a93118
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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();
});
Expand Down

0 comments on commit 9a93118

Please sign in to comment.