Skip to content
Snippets Groups Projects
Commit b08c38c0 authored by Steve Reis's avatar Steve Reis
Browse files

Hotfix auth service test failing

parent 3b99bcf0
No related branches found
No related tags found
No related merge requests found
......@@ -55,8 +55,8 @@ describe('AuthService', () => {
service = module.get<AuthService>(AuthService);
});
it('login', () => {
const data = service.login(user);
it('login', async () => {
const data = await service.login(user);
expect(data.accessToken).toBe(jwtToken);
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment