Skip to content

Commit

Permalink
Delete tests for welcome module
Browse files Browse the repository at this point in the history
  • Loading branch information
DidierViret committed Feb 16, 2024
1 parent b4e1608 commit a6bd107
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 93 deletions.
4 changes: 2 additions & 2 deletions tests/orif/user/Controllers/AuthHttpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function test_azure_mail_existed_user_variable_created(): void
$noAzureMail = '[email protected]';
$userModel = model(User_model::class);
$userModel->update($userId, ['email' => $noAzureMail]);
d($userModel->find($userId));
#d($userModel->find($userId));
$_POST['user_verification_code'] = null;
$_SESSION['verification_code'] = null;
# $_SESSION['verification_attempts'] = 3;
Expand All @@ -84,7 +84,7 @@ public function test_azure_mail_with_correct_code_existing_user(): void
$noAzureMail = '[email protected]';
$userModel = model(User_model::class);
$userModel->update($userId, ['email' => $noAzureMail]);
d($userModel->findAll());
#d($userModel->findAll());
$_POST['user_verification_code'] = 'correct';
$_SESSION['verification_code'] = 'correct';
# $_SESSION['verification_attempts'] = 3;
Expand Down
91 changes: 0 additions & 91 deletions tests/orif/welcome/Controllers/HomeTest.php

This file was deleted.

0 comments on commit a6bd107

Please sign in to comment.