Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Graney-Ward committed Jun 26, 2024
1 parent 1fdd084 commit 0301897
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/services/auth/auth.controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,12 @@ describe('AuthController', () => {
.set('Authorization', 'Bearer <your_mocked_jwt_token>')
.expect(201)
.then(response => {
expect(response.body).toEqual({});
expect(response.body).toEqual({
block_num: 1,
expired: false,
id: "id",
trx_num: 10,
});
});
});

Expand Down

0 comments on commit 0301897

Please sign in to comment.