chore: add one more unit test for ALL_SUPPORTED_CHAIN_IDS

This commit is contained in:
Moody Salem 2021-07-15 10:04:43 -05:00
parent 08a8f669e8
commit b16dd2a930
No known key found for this signature in database
GPG Key ID: 8CB5CD10385138DB

@ -22,5 +22,9 @@ describe('chains', () => {
expect(SupportedChainId[chainId]).toBeTruthy()
})
})
it('all values are numeric', () => {
expect(ALL_SUPPORTED_CHAIN_IDS.every((chainId) => typeof chainId === 'number')).toBeTruthy()
})
})
})