2019-07-11 16:46:52 +03:00
|
|
|
const { expect } = require('chai')
|
|
|
|
const { BRIDGE_MODES, ERC_TYPES } = require('../constants')
|
|
|
|
|
|
|
|
describe('constants', () => {
|
|
|
|
it('should contain correct number of bridge types', () => {
|
2019-10-21 15:57:28 +03:00
|
|
|
expect(Object.keys(BRIDGE_MODES).length).to.be.equal(5)
|
2019-07-11 16:46:52 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should contain correct number of erc types', () => {
|
|
|
|
expect(Object.keys(ERC_TYPES).length).to.be.equal(2)
|
|
|
|
})
|
|
|
|
})
|