We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2ee4f3 commit 81305f3Copy full SHA for 81305f3
src/content/6/en/part6b.md
@@ -582,7 +582,7 @@ describe('noteReducer', () => {
582
const newState = noteReducer(state, action)
583
584
expect(newState).toHaveLength(1)
585
- expect(newState.map(s => s.content)).toContainEqual(action.payload)
+ expect(newState.map(s => s.content)).toContainEqual(action.payload) // highlight-line
586
})
587
588
test('returns new state with action notes/toggleImportanceOf', () => {
@@ -600,7 +600,7 @@ describe('noteReducer', () => {
600
601
const action = {
602
type: 'notes/toggleImportanceOf', // highlight-line
603
- payload: 2
+ payload: 2 // highlight-line
604
}
605
606
deepFreeze(state)
0 commit comments