Update account management features and improve test configurations

Multiple updates are made to refine the account management features, including updating the 'Your Teams' text to show the number of teams, and modifying the form data validation process in the 'deletePersonalAccountAction' service. Additionally, improvements have been made in test configurations including updating the test timeout settings, taking screenshots when a test fails, and adjusting the location for saving Playwright reports.
This commit is contained in:
giancarlo
2024-04-12 20:52:35 +08:00
parent 24a6190f51
commit 2bad506d75
15 changed files with 93 additions and 51 deletions

View File

@@ -35,11 +35,15 @@ export class DeletePersonalAccountService {
productName: string;
};
}) {
const userId = params.userId;
const logger = await getLogger();
const userId = params.userId;
const ctx = { userId, name: this.namespace };
logger.info(ctx, 'User requested deletion. Processing...');
logger.info(
ctx,
'User requested to delete their personal account. Processing...',
);
// execute the deletion of the user
try {
@@ -50,12 +54,12 @@ export class DeletePersonalAccountService {
...ctx,
error,
},
'Error deleting user',
'Encountered an error deleting user',
);
throw new Error('Error deleting user');
}
logger.info(ctx, 'User deleted successfully');
logger.info(ctx, 'User successfully deleted!');
}
}