1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

fix async unit tests

* async act() to the rescue with React 16.9+
This commit is contained in:
Matthias Kretschmann 2019-10-30 10:30:01 +01:00
parent e417c8299a
commit 9daa49a085
Signed by: m
GPG Key ID: 606EEEF3C479A91F
4 changed files with 29 additions and 37 deletions

View File

@ -1,5 +1,5 @@
import React from 'react'
import { fireEvent, render } from '@testing-library/react'
import { fireEvent, render, act } from '@testing-library/react'
import Dropzone from './Dropzone'
function mockData(files: any) {
@ -38,6 +38,7 @@ test('invoke onDragEnter when dragenter event occurs', async () => {
const data = mockData([file])
const handleOnDrop = jest.fn()
await act(async () => {
const ui = <Dropzone handleOnDrop={handleOnDrop} />
const { container } = render(ui)
@ -47,6 +48,7 @@ test('invoke onDragEnter when dragenter event occurs', async () => {
dispatchEvt(dropzone, 'dragover', data)
dispatchEvt(dropzone, 'drop', data)
await flushPromises(ui, container)
})
expect(handleOnDrop).toHaveBeenCalled()
})

View File

@ -1,5 +1,5 @@
import React from 'react'
import { render } from '@testing-library/react'
import { render, wait, act } from '@testing-library/react'
import useIpfs from './use-ipfs'
export default function TestComponent() {
@ -14,8 +14,14 @@ export default function TestComponent() {
}
describe('use-ipfs', () => {
it('renders without crashing', () => {
const { container } = render(<TestComponent />)
expect(container.firstChild).toBeInTheDocument()
it('renders without crashing', async () => {
let element: any
await act(async () => {
element = render(<TestComponent />)
})
expect(element.container.firstChild).toBeInTheDocument()
await wait(() => element.getByText('Ready'))
})
})

View File

@ -1,5 +1,5 @@
import React from 'react'
import { render, fireEvent } from '@testing-library/react'
import { render, fireEvent, act, wait } from '@testing-library/react'
import { MemoryRouter } from 'react-router'
import { createMemoryHistory, createLocation } from 'history'
import Faucet from '.'
@ -32,11 +32,7 @@ const setup = () => {
)
const button = utils.getByText('Request ETH')
const { container } = utils
return {
button,
container,
...utils
}
return { button, container, ...utils }
}
describe('Faucet', () => {
@ -47,17 +43,15 @@ describe('Faucet', () => {
it('shows actions when connected', () => {
const { button } = setup()
expect(button).toBeInTheDocument()
expect(button).not.toHaveAttribute('disabled')
})
it('fires requestFromFaucet', () => {
const { button, getByText } = setup()
it('fires requestFromFaucet', async () => {
await act(async () => {
const { button } = setup()
fireEvent.click(button)
})
expect(userMockConnected.requestFromFaucet).toHaveBeenCalledTimes(1)
// check for spinner
expect(getByText('Getting ETH...')).toBeInTheDocument()
})
})

View File

@ -2,19 +2,10 @@
import '@testing-library/jest-dom/extend-expect'
// this is just a little hack to silence a warning that we'll get until we
// upgrade to 16.9: https://github.com/facebook/react/pull/14853
// const originalError = console.error
// Filter out deprecation warnings caused by external dependencies
const originalWarning = console.warn
beforeAll(() => {
// console.error = (...args) => {
// if (/Warning.*not wrapped in act/.test(args[0])) {
// return
// }
// originalError.call(console, ...args)
// }
console.warn = (...args) => {
if (/Warning.*componentWillMount has been renamed/.test(args[0])) {
return
@ -24,6 +15,5 @@ beforeAll(() => {
})
afterAll(() => {
// console.error = originalError
console.warn = originalWarning
})