mirror of
https://github.com/bendtherules/JSQuestions.git
synced 2026-08-18 13:53:51 +00:00
5 lines
161 B
JavaScript
5 lines
161 B
JavaScript
// Jest setup file to handle unhandled rejections
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
// silently ignore unhandled rejections in tests
|
|
});
|