Sin descripción

setupTests.js 327B

12345678910111213141516
  1. // @flow
  2. const { toMatchImageSnapshot } = require('jest-image-snapshot');
  3. expect.extend({ toMatchImageSnapshot });
  4. global.TEST_URL = `http://localhost:${process.env.DEV_PORT || '5000'}`;
  5. global.console = {
  6. log: console.log,
  7. };
  8. beforeEach(() => {
  9. global.console.error = jest.fn();
  10. global.console.warn = jest.fn();
  11. });