mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
|
import React from 'react'
|
||
|
import App from './App'
|
||
|
|
||
|
import renderer from 'react-test-renderer'
|
||
|
|
||
|
it('renders without crashing', () => {
|
||
|
const rendered = renderer.create(<App />).toJSON()
|
||
|
expect(rendered).toBeTruthy()
|
||
|
})
|