about summary refs log tree commit diff
path: root/__tests__/view/shell/mobile/Menu.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/view/shell/mobile/Menu.test.tsx')
-rw-r--r--__tests__/view/shell/mobile/Menu.test.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/__tests__/view/shell/mobile/Menu.test.tsx b/__tests__/view/shell/mobile/Menu.test.tsx
index 5eee3f125..caec5f29a 100644
--- a/__tests__/view/shell/mobile/Menu.test.tsx
+++ b/__tests__/view/shell/mobile/Menu.test.tsx
@@ -57,14 +57,4 @@ describe('Menu', () => {
     expect(onCloseMock).toHaveBeenCalled()
     expect(mockedNavigationStore.switchTo).toHaveBeenCalledWith(1, true)
   })
-
-  it('presses new scene button', () => {
-    const {getAllByTestId} = render(<Menu {...mockedProps} />)
-
-    const menuItemButton = getAllByTestId('menuItemButton')
-    fireEvent.press(menuItemButton[3])
-
-    expect(onCloseMock).toHaveBeenCalled()
-    expect(mockedShellStore.openModal).toHaveBeenCalled()
-  })
 })