mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
c1e3c229bc
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information. This change enables `import/order` and fixes the issues raised by the rule.
26 lines
931 B
JavaScript
26 lines
931 B
JavaScript
import assert from 'assert'
|
|
import sinon from 'sinon'
|
|
import ObservableStore from 'obs-store'
|
|
import TokenRatesController from '../../../../app/scripts/controllers/token-rates'
|
|
|
|
describe('TokenRatesController', function () {
|
|
it('should listen for preferences store updates', function () {
|
|
const preferences = new ObservableStore({ tokens: [] })
|
|
preferences.putState({ tokens: ['foo'] })
|
|
const controller = new TokenRatesController({ preferences })
|
|
assert.deepEqual(controller._tokens, ['foo'])
|
|
})
|
|
|
|
it('should poll on correct interval', async function () {
|
|
const stub = sinon.stub(global, 'setInterval')
|
|
const preferences = new ObservableStore({ tokens: [] })
|
|
preferences.putState({ tokens: ['foo'] })
|
|
const controller = new TokenRatesController({ preferences })
|
|
controller.start(1337)
|
|
|
|
assert.strictEqual(stub.getCall(0).args[1], 1337)
|
|
stub.restore()
|
|
controller.stop()
|
|
})
|
|
})
|