12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
import * as actions from './actions';
|
|
import * as reducer from './reducer';
|
|
|
|
describe('onboardStatus reducer', () => {
|
|
it('should handle START_ONBOARD_STATUS', () => {
|
|
expect(reducer.onboardStatusReducer(undefined, actions.startOnboardSession())).toEqual({
|
|
...reducer.INITIAL_STATE,
|
|
sessionStarted: true
|
|
});
|
|
});
|
|
});
|