mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +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.
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
import assert from 'assert'
|
|
import ObservableStore from 'obs-store'
|
|
import ComposableObservableStore from '../../../app/scripts/lib/ComposableObservableStore'
|
|
|
|
describe('ComposableObservableStore', function () {
|
|
it('should register initial state', function () {
|
|
const store = new ComposableObservableStore('state')
|
|
assert.strictEqual(store.getState(), 'state')
|
|
})
|
|
|
|
it('should register initial structure', function () {
|
|
const testStore = new ObservableStore()
|
|
const store = new ComposableObservableStore(null, { TestStore: testStore })
|
|
testStore.putState('state')
|
|
assert.deepEqual(store.getState(), { TestStore: 'state' })
|
|
})
|
|
|
|
it('should update structure', function () {
|
|
const testStore = new ObservableStore()
|
|
const store = new ComposableObservableStore()
|
|
store.updateStructure({ TestStore: testStore })
|
|
testStore.putState('state')
|
|
assert.deepEqual(store.getState(), { TestStore: 'state' })
|
|
})
|
|
|
|
it('should return flattened state', function () {
|
|
const fooStore = new ObservableStore({ foo: 'foo' })
|
|
const barStore = new ObservableStore({ bar: 'bar' })
|
|
const store = new ComposableObservableStore(null, {
|
|
FooStore: fooStore,
|
|
BarStore: barStore,
|
|
})
|
|
assert.deepEqual(store.getFlatState(), { foo: 'foo', bar: 'bar' })
|
|
})
|
|
})
|