Skip to content

Commit

Permalink
test(backend): getAdditionalProperties resolver for null state
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Jun 7, 2024
1 parent a4ea985 commit 7d74b7e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,11 @@ describe('Wallet Address Resolvers', (): void => {
id
status
publicName
additionalProperties {
key
value
visibleInOpenPayments
}
}
}
}
Expand All @@ -327,7 +332,8 @@ describe('Wallet Address Resolvers', (): void => {
expect(response.code).toEqual('200')
expect(response.walletAddress).toEqual({
__typename: 'WalletAddress',
...updateOptions
...updateOptions,
additionalProperties: []
})

const updatedWalletAddress = await walletAddressService.get(
Expand Down

0 comments on commit 7d74b7e

Please sign in to comment.