mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-14 17:24:51 +01:00
27 lines
740 B
TypeScript
27 lines
740 B
TypeScript
import '@testing-library/jest-dom/extend-expect'
|
|
import * as Gatsby from 'gatsby'
|
|
import siteMetadata from './__fixtures__/siteMetadata.json'
|
|
import mockReact from './__mocks__/@oceanprotocol/react'
|
|
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
import('intersection-observer')
|
|
}
|
|
|
|
import('./__mocks__/matchMedia')
|
|
|
|
const useStaticQuery = jest.spyOn(Gatsby, 'useStaticQuery')
|
|
// const useWeb3 = jest.spyOn(oceanReact, 'useWeb3')
|
|
// const useOcean = jest.spyOn(oceanReact, 'useOcean')
|
|
|
|
export const globalMock = {
|
|
...siteMetadata
|
|
}
|
|
|
|
beforeAll(() => {
|
|
jest.mock('web3')
|
|
jest.mock('@oceanprotocol/react')
|
|
|
|
// useOcean.mockImplementation(() => mockReact.useOcean())
|
|
useStaticQuery.mockImplementation(() => globalMock)
|
|
})
|