about summary refs log tree commit diff
path: root/__tests__/view/screens/Notifications.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/view/screens/Notifications.test.tsx')
-rw-r--r--__tests__/view/screens/Notifications.test.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/__tests__/view/screens/Notifications.test.tsx b/__tests__/view/screens/Notifications.test.tsx
deleted file mode 100644
index 2c5e32cd7..000000000
--- a/__tests__/view/screens/Notifications.test.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react'
-import {Notifications} from '../../../src/view/screens/Notifications'
-import renderer from 'react-test-renderer'
-// import {render} from '../../../../jest/test-utils'
-
-describe('Notifications', () => {
-  const mockedProps = {
-    navIdx: [0, 0] as [number, number],
-    params: {},
-    visible: true,
-  }
-  it('renders correctly', () => {
-    const tree = renderer.create(<Notifications {...mockedProps} />).toJSON()
-    expect(tree).toMatchSnapshot()
-  })
-})