bootstrap.js 406 B

1234567891011121314151617
  1. import './helpers/custom-matchers';
  2. jasmine.DEFAULT_TIMEOUT_INTERVAL = 15000;
  3. beforeEach(() => {
  4. if (document.activeElement && document.activeElement !== document.body) {
  5. document.activeElement.blur();
  6. } else if (!document.activeElement) { // IE
  7. document.body.focus();
  8. }
  9. });
  10. afterEach(() => {
  11. /* eslint-disable no-unused-expressions */
  12. (window.scrollTo || window.scrollTo(0, 0));
  13. });