Skip to content

Commit cc9b391

Browse files
Samuel MaierSamuel Maier
Samuel Maier
authored and
Samuel Maier
committed
Fix tests
1 parent edffcf5 commit cc9b391

File tree

3 files changed

+25
-31
lines changed

3 files changed

+25
-31
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ export interface StoreCreator {
283283
<S, A extends Action, Ext, StateExt>(
284284
reducer: Reducer<S, A>,
285285
preloadedState?: DeepPartial<S>,
286-
enhancer?: StoreEnhancer<Ext>
286+
enhancer?: StoreEnhancer<Ext>,
287287
options?: ReduxOptions,
288288
): Store<S & StateExt, A> & Ext
289289
}

src/createStore.js

+15-24
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import $$observable from 'symbol-observable'
33
import ActionTypes from './utils/actionTypes'
44
import isPlainObject from './utils/isPlainObject'
55

6-
let defaultOptions = {rules: {}}
6+
let defaultOptions = { rules: {} }
77

88
/**
99
* Creates a Redux store that holds the state tree.
@@ -46,37 +46,28 @@ export default function createStore(reducer, preloadedState, enhancer, options)
4646
) {
4747
throw new Error(
4848
'It looks like you are passing several store enhancers to ' +
49-
'createStore(). This is not supported. Instead, compose them ' +
50-
'together to a single function.'
49+
'createStore(). This is not supported. Instead, compose them ' +
50+
'together to a single function.'
5151
)
5252
}
5353

5454
if (typeof preloadedState === 'function') {
55-
if (
56-
(typeof enhancer === 'object') ||
57-
(typeof enhancer === 'undefined')
58-
) {
59-
options = enhancer
60-
enhancer = preloadedState
61-
preloadedState = undefined
62-
}
55+
return createStore(reducer, undefined, preloadedState, enhancer)
6356
}
6457

6558
if (typeof enhancer !== 'undefined') {
6659
if (typeof enhancer !== 'function') {
6760
throw new Error('Expected the enhancer to be a function.')
6861
}
6962

70-
return enhancer(createStore)(reducer, preloadedState)
63+
return enhancer(createStore)(reducer, preloadedState, undefined, options)
7164
}
7265

7366
if (typeof reducer !== 'function') {
7467
throw new Error('Expected the reducer to be a function.')
7568
}
76-
77-
options = options || {};
78-
79-
options = {...defaultOptions, ...options} // @todo find good supported option
69+
70+
options = { ...defaultOptions, ...options } // @todo find good supported option
8071

8172
let banDispatch = !options.rules.allowDispatch
8273
let banGetState = !options.rules.allowGetState
@@ -110,8 +101,8 @@ export default function createStore(reducer, preloadedState, enhancer, options)
110101
if (banGetState && isDispatching) {
111102
throw new Error(
112103
'You may not call store.getState() while the reducer is executing. ' +
113-
'The reducer has already received the state as an argument. ' +
114-
'Pass it down from the top reducer instead of reading it from the store.'
104+
'The reducer has already received the state as an argument. ' +
105+
'Pass it down from the top reducer instead of reading it from the store.'
115106
)
116107
}
117108

@@ -149,9 +140,9 @@ export default function createStore(reducer, preloadedState, enhancer, options)
149140
if (banSubscriptionHandling && isDispatching) {
150141
throw new Error(
151142
'You may not call store.subscribe() while the reducer is executing. ' +
152-
'If you would like to be notified after the store has been updated, subscribe from a ' +
153-
'component and invoke store.getState() in the callback to access the latest state. ' +
154-
'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
143+
'If you would like to be notified after the store has been updated, subscribe from a ' +
144+
'component and invoke store.getState() in the callback to access the latest state. ' +
145+
'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
155146
)
156147
}
157148

@@ -168,7 +159,7 @@ export default function createStore(reducer, preloadedState, enhancer, options)
168159
if (banSubscriptionHandling && isDispatching) {
169160
throw new Error(
170161
'You may not unsubscribe from a store listener while the reducer is executing. ' +
171-
'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
162+
'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
172163
)
173164
}
174165

@@ -209,14 +200,14 @@ export default function createStore(reducer, preloadedState, enhancer, options)
209200
if (!isPlainObject(action)) {
210201
throw new Error(
211202
'Actions must be plain objects. ' +
212-
'Use custom middleware for async actions.'
203+
'Use custom middleware for async actions.'
213204
)
214205
}
215206

216207
if (typeof action.type === 'undefined') {
217208
throw new Error(
218209
'Actions may not have an undefined "type" property. ' +
219-
'Have you misspelled a constant?'
210+
'Have you misspelled a constant?'
220211
)
221212
}
222213

test/createStore.spec.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -466,13 +466,14 @@ describe('createStore', () => {
466466
})
467467

468468
it('does allow dispatch() from within a reducer if configured accordingly', () => {
469+
console.log('-------------------NOW---------------------');
469470
const store = createStore(reducers.dispatchInTheMiddleOfReducer, identity, {rules: { allowDispatch: true } })
470471

471472
expect(() =>
472473
store.dispatch(
473474
dispatchInMiddle(store.dispatch.bind(store, unknownAction()))
474475
)
475-
).not.toThrow(/may not dispatch/)
476+
).not.toThrow()
476477
})
477478

478479
it('does not allow getState() from within a reducer', () => {
@@ -484,11 +485,12 @@ describe('createStore', () => {
484485
})
485486

486487
it('does allow getState() from within a reducer if configured accordingly', () => {
488+
console.log('-------------------NOW---------------------');
487489
const store = createStore(reducers.getStateInTheMiddleOfReducer, identity, {rules: { allowGetState: true } })
488490

489491
expect(() =>
490492
store.dispatch(getStateInMiddle(store.getState.bind(store)))
491-
).not.toThrow(/You may not call store.getState()/)
493+
).not.toThrow()
492494
})
493495

494496
it('does not allow subscribe() from within a reducer', () => {
@@ -500,11 +502,12 @@ describe('createStore', () => {
500502
})
501503

502504
it('does allow subscribe() from within a reducer if configured accordingly', () => {
505+
console.log('-------------------NOW---------------------');
503506
const store = createStore(reducers.subscribeInTheMiddleOfReducer, identity, {rules: { allowSubscriptionHandling: true } })
504507

505508
expect(() =>
506509
store.dispatch(subscribeInMiddle(store.subscribe.bind(store, () => {})))
507-
).not.toThrow(/You may not call store.subscribe()/)
510+
).not.toThrow()
508511
})
509512

510513
it('does not allow unsubscribe from subscribe() from within a reducer', () => {
@@ -522,7 +525,7 @@ describe('createStore', () => {
522525

523526
expect(() =>
524527
store.dispatch(unsubscribeInMiddle(unsubscribe.bind(store)))
525-
).not.toThrow(/You may not unsubscribe from a store/)
528+
).not.toThrow()
526529
})
527530

528531
it('recovers from an error within a reducer', () => {
@@ -559,7 +562,7 @@ describe('createStore', () => {
559562
const spyEnhancer = vanillaCreateStore => (...args) => {
560563
expect(args[0]).toBe(reducers.todos)
561564
expect(args[1]).toBe(emptyArray)
562-
expect(args.length).toBe(2)
565+
expect(args[2]).toBe(undefined)
563566
const vanillaStore = vanillaCreateStore(...args)
564567
return {
565568
...vanillaStore,
@@ -583,7 +586,7 @@ describe('createStore', () => {
583586
const spyEnhancer = vanillaCreateStore => (...args) => {
584587
expect(args[0]).toBe(reducers.todos)
585588
expect(args[1]).toBe(undefined)
586-
expect(args.length).toBe(2)
589+
expect(args[2]).toBe(undefined)
587590
const vanillaStore = vanillaCreateStore(...args)
588591
return {
589592
...vanillaStore,

0 commit comments

Comments
 (0)