test: Add more test IDs (#9285)

This commit is contained in:
Doug Drechsel
2024-08-16 15:21:56 -04:00
committed by GitHub
parent 9552a4cbee
commit 2a63129ff6
7 changed files with 21 additions and 21 deletions

View File

@@ -431,7 +431,7 @@ describe('Email Verification Token Expiration: ', () => {
expect(emailSpy).toHaveBeenCalledTimes(0);
});
it('provides full user object in email verification function on email and username change', async () => {
it_id('d98babc1-feb8-4b5e-916c-57dc0a6ed9fb')(it)('provides full user object in email verification function on email and username change', async () => {
const emailAdapter = {
sendVerificationEmail: () => {},
sendPasswordResetEmail: () => Promise.resolve(),
@@ -679,7 +679,7 @@ describe('Email Verification Token Expiration: ', () => {
});
});
it('setting the email on the user should set a new email verification token and new expiration date for the token when expire email verify token flag is set', done => {
it_id('b6c87f35-d887-477d-bc86-a9217a424f53')(it)('setting the email on the user should set a new email verification token and new expiration date for the token when expire email verify token flag is set', done => {
const user = new Parse.User();
let userBeforeEmailReset;