Skip to content

Commit

Permalink
test(credentials): update tests validators to include the new blockch…
Browse files Browse the repository at this point in the history
…ain balance validator
  • Loading branch information
vplasencia committed Jan 31, 2024
1 parent c8a880f commit 737c8e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/credentials/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ describe("Credentials library", () => {
it("Should add a validator to the list of supported validators", () => {
addValidator({} as any)

expect(validators).toHaveLength(7)
expect(validators).toHaveLength(8)
})
})

describe("# addValidators", () => {
it("Should add 2 validators to the list of supported validators", () => {
addValidators([{} as any, {} as any])

expect(validators).toHaveLength(9)
expect(validators).toHaveLength(10)
})
})

Expand Down

0 comments on commit 737c8e5

Please sign in to comment.