ri7nz/Warpokex

View on GitHub
src/setupTests.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import {
  render,
  cleanup,
  fireEvent,
  wait,
  waitForElement,
} from '@testing-library/react'
import '@testing-library/jest-dom/extend-expect'

global.React = React
global.render = render
global.cleanup = cleanup
global.fireEvent = fireEvent
global.waitForElement = waitForElement
global.wait = wait

// matchMedia not present, legacy browsers require a polyfill
window.matchMedia =
  window.matchMedia ||
  function() {
    return {
      matches: false,
      addListener: function() {},
      removeListener: function() {},
    }
  }