UNPKG

@lad-tech/mobydick-core

Version:

React Native components library focused on usability, accessibility and developer experience

12 lines (10 loc) 336 B
import {defaultState, reducer} from '../reducer'; import {POPUP_CLOSE_ALL} from '../constatnts'; describe('Popup reducer', () => { test('Default works', () => { // dirty hack for get into default case expect( reducer(defaultState, {type: 'type' as typeof POPUP_CLOSE_ALL}), ).toStrictEqual(defaultState); }); });