Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
crisnicandrei committed Nov 16, 2023
1 parent dcb9686 commit 3d0db5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/shared/services/account/account.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ describe('AccountService', () => {
await instance.verifyEmail('sampleToken');
expect(instance.getAccount().emailStatus).toBe('status.auth.verified');
expect(instance.getAccount().keepLoggedIn).toBeTrue();
expect(trackerSpy).toHaveBeenCalled()
expect(trackerSpy).toHaveBeenCalled();
});

it('should handle successful phone verification', async () => {
Expand All @@ -199,7 +199,7 @@ describe('AccountService', () => {
await instance.verifyEmail('sampleToken');
expect(instance.getAccount().phoneStatus).toBe('status.auth.verified');
expect(instance.getAccount().keepLoggedIn).toBeTrue();
expect(trackerSpy).toHaveBeenCalled()
expect(trackerSpy).toHaveBeenCalled();
});
it('should update the account storage when a file is uploaded successfully', async () => {
const { instance, inject } = shallow.createService();
Expand Down

0 comments on commit 3d0db5d

Please sign in to comment.