test.js 738 B

1234567891011121314151617181920212223
  1. 'use strict';
  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. let argv = process.argv.slice(2);
  14. // Remove watch if in CI or in coverage mode
  15. if (process.env.CI || process.env.SENTRY_PRECOMMIT || argv.includes('--coverage')) {
  16. argv = argv.filter(arg => arg !== '--watch');
  17. }
  18. require('jest').run(argv);