diff --git a/Composer/packages/client/src/recoilModel/dispatchers/__tests__/navigation.test.tsx b/Composer/packages/client/src/recoilModel/dispatchers/__tests__/navigation.test.tsx index 868576de04..7f0049fefe 100644 --- a/Composer/packages/client/src/recoilModel/dispatchers/__tests__/navigation.test.tsx +++ b/Composer/packages/client/src/recoilModel/dispatchers/__tests__/navigation.test.tsx @@ -112,6 +112,8 @@ describe('navigation dispatcher', () => { await act(async () => { await dispatcher.setDesignPageLocation(projectId, { dialogId: 'dialogId', + selected: '', + focused: '', promptTab: undefined, }); }); @@ -130,6 +132,7 @@ describe('navigation dispatcher', () => { await dispatcher.setDesignPageLocation(projectId, { dialogId: 'dialogId', selected: 'select', + focused: '', promptTab: undefined, }); });