summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/setupJest.ts
blob: 3f76543571a4fdc6ca85cc09c785a7f72b96ebfc (plain)
1
2
3
4
5
6
7
8
9
10
11
import '@angular/localize/init';

import 'jest-preset-angular';

import './jestGlobalMocks';

process.on('unhandledRejection', (error) => {
  const stack = error['stack'] || '';
  // Avoid potential hang on test failure when running tests in parallel.
  throw `WARNING: unhandled rejection: ${error} ${stack}`;
});