(state)
| 7 | import { kajeroHomepage } from '../config'; |
| 8 | |
| 9 | function handleFirstChange(state) { |
| 10 | return state.set( |
| 11 | 'undoStack', Immutable.List([state.remove('undoStack')]) |
| 12 | ).setIn( |
| 13 | ['metadata', 'created'], |
| 14 | new Date() |
| 15 | ).setIn( |
| 16 | ['metadata', 'original'], |
| 17 | Immutable.fromJS({ |
| 18 | title: undefined, |
| 19 | url: undefined |
| 20 | }) |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | describe('notebook reducer', () => { |
| 25 |
no outgoing calls
no test coverage detected