-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
541fd18
commit bfe14e0
Showing
14 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ion/email/dengue/email-phl-dengue.test.ts → ...sts/email/dengue/email-phl-dengue.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ail/dengue/test-dengue-scenario.helper.ts → ...ail/dengue/test-dengue-scenario.helper.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...n/email/drought/email-uga-drought.test.ts → ...s/email/drought/email-uga-drought.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...flash-flood/email-mwi-flash-flood.test.ts → ...flash-flood/email-mwi-flash-flood.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...flood/test-flash-flood-scenario.helper.ts → ...flood/test-flash-flood-scenario.helper.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ion/email/floods/email-ssd-floods.test.ts → ...sts/email/floods/email-ssd-floods.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ion/email/floods/email-uga-floods.test.ts → ...sts/email/floods/email-uga-floods.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...mail/floods/test-flood-scenario.helper.ts → ...mail/floods/test-flood-scenario.helper.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...n/email/malaria/email-eth-malaria.test.ts → ...s/email/malaria/email-eth-malaria.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...l/malaria/test-malaria-scenario.helper.ts → ...l/malaria/test-malaria-scenario.helper.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...n/email/typhoon/email-phl-typhoon.test.ts → ...s/email/typhoon/email-phl-typhoon.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...l/typhoon/test-typhoon-scenario.helper.ts → ...l/typhoon/test-typhoon-scenario.helper.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...integration/users/change-password.test.ts → ...ation/tests/users/change-password.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { UserRole } from '../../../services/API-service/src/api/user/user-role.enum'; | ||
import { userData } from '../fixtures/users.const'; | ||
import { UserRole } from '../../../../services/API-service/src/api/user/user-role.enum'; | ||
import { userData } from '../../fixtures/users.const'; | ||
import { | ||
createUser, | ||
getAccessToken, | ||
loginUser, | ||
resetDB, | ||
} from '../helpers/utility.helper'; | ||
} from '../../helpers/utility.helper'; | ||
|
||
describe('create user', () => { | ||
let accessToken: string; | ||
|
@@ -15,7 +15,7 @@ describe('create user', () => { | |
await resetDB(accessToken); | ||
}); | ||
|
||
it('successfully and log-in with it', async () => { | ||
it('successfully, and log-in with it', async () => { | ||
// Arrange | ||
let newUserData = structuredClone(userData); | ||
newUserData.email = '[email protected]'; | ||
|