diff --git a/src/constants/chains.test.ts b/src/constants/chains.test.ts index 87b74740f4..6b6f32d5f1 100644 --- a/src/constants/chains.test.ts +++ b/src/constants/chains.test.ts @@ -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() + }) }) })