Skip to content

Commit

Permalink
Fix missing async in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed Nov 15, 2023
1 parent 857f657 commit 93cdb96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ describe('sessionRecordingsPlaylistLogic', () => {
})

it('mounts and loads the recording when a recording is opened', () => {
expectLogic(logic, () => logic.actions.setSelectedRecordingId('abcd'))
expectLogic(logic, async () => logic.asyncActions.setSelectedRecordingId('abcd'))
.toMount(sessionRecordingDataLogic({ sessionRecordingId: 'abcd' }))
.toDispatchActions(['loadEntireRecording'])
})
Expand Down

0 comments on commit 93cdb96

Please sign in to comment.