2019-07-11 16:46:52 +03:00
|
|
|
const { expect } = require('chai')
|
2021-05-08 18:50:46 +03:00
|
|
|
const { BRIDGE_MODES } = require('../constants')
|
2019-07-11 16:46:52 +03:00
|
|
|
|
|
|
|
describe('constants', () => {
|
|
|
|
it('should contain correct number of bridge types', () => {
|
2021-05-08 18:50:46 +03:00
|
|
|
expect(Object.keys(BRIDGE_MODES).length).to.be.equal(3)
|
2019-07-11 16:46:52 +03:00
|
|
|
})
|
|
|
|
})
|