Skip to content

Commit eb80c58

Browse files
Update sample/19-auth-jwt/e2e/app/app.e2e-spec.ts
1 parent fca4ace commit eb80c58

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sample/19-auth-jwt/e2e/app/app.e2e-spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ describe('E2E JWT Sample', () => {
2020
.post('/auth/login')
2121
.send({ username: 'john', password: 'changeme' })
2222
.expect(201);
23+
2324
const token = loginReq.body.access_token;
2425
return request(app.getHttpServer())
2526
.get('/profile')
@@ -31,4 +32,4 @@ describe('E2E JWT Sample', () => {
3132
afterAll(async() => {
3233
await app.close();
3334
});
34-
});
35+
});

0 commit comments

Comments
 (0)