Skip to content

Commit

Permalink
e2e -> defid
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Jan 31, 2024
1 parent 101ddb2 commit e24bf44
Show file tree
Hide file tree
Showing 17 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ beforeAll(async () => {
await app.waitForWalletCoinbaseMaturity()
await app.waitForWalletBalanceGTE(100)

client = new JsonRpcClient(app.url)
client = new JsonRpcClient(app.rpcUrl)

await app.waitForIndexedHeight(100)
})
Expand Down Expand Up @@ -81,7 +81,7 @@ describe('get', () => {
expect.assertions(2)
try {
await controller.get('invalidtransactionid')
} catch (err) {
} catch (err: any) {
expect(err).toBeInstanceOf(NotFoundException)
expect(err.response).toStrictEqual({
statusCode: 404,
Expand Down

0 comments on commit e24bf44

Please sign in to comment.