mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import { Web3Provider } from '@oceanprotocol/react'
|
|
|
|
describe('Web3Provider', () => {
|
|
it('renders without crashing', () => {
|
|
const { container } = render(<Web3Provider>Children</Web3Provider>)
|
|
expect(container).toHaveTextContent('Children')
|
|
})
|
|
})
|