test.js 765 B

12345678910111213141516171819202122232425
  1. /* global process */
  2. // Do this as the first thing so that any code reading it knows the right env.
  3. // process.env.BABEL_ENV = 'test';
  4. process.env.NODE_ENV = 'test';
  5. process.env.PUBLIC_URL = '';
  6. process.env.TZ = 'America/New_York';
  7. // Makes the script crash on unhandled rejections instead of silently
  8. // ignoring them. In the future, promise rejections that are not handled will
  9. // terminate the Node.js process with a non-zero exit code.
  10. process.on('unhandledRejection', err => {
  11. throw err;
  12. });
  13. const jest = require('jest');
  14. let argv = process.argv.slice(2);
  15. // Remove watch if in CI or in coverage mode
  16. if (process.env.CI || process.env.SENTRY_PRECOMMIT || argv.includes('--coverage')) {
  17. argv = argv.filter(arg => arg !== '--watch');
  18. }
  19. jest.run(argv);