Delete Account: started adding unit tests

This commit is contained in:
gianantoniopini
2021-05-11 15:19:05 +02:00
parent b0bd8c94f3
commit eb54a7f69d
5 changed files with 131 additions and 1 deletions

View File

@ -0,0 +1,15 @@
const deleteUserFunctionName = 'deleteUser';
const defaultDelayInMilliseconds = 2000;
class Functions {
static get deleteUserFunctionName() {
return deleteUserFunctionName;
}
static get defaultDelayInMilliseconds() {
return defaultDelayInMilliseconds;
}
}
export default Functions;