Skip to content

Commit

Permalink
Add possibility to console.error/redbox on promise rejections
Browse files Browse the repository at this point in the history
Summary: Adds a possibility to `console.error` / redbox if any promise is rejected.

Differential Revision: D3048130

fb-gh-sync-id: b1a44b421ec3b1f7913226c86b2a48f00f27b105
shipit-source-id: b1a44b421ec3b1f7913226c86b2a48f00f27b105
  • Loading branch information
davidaurelio authored and Facebook Github Bot 4 committed Mar 15, 2016
1 parent 205b5d4 commit f87b673
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Libraries/promiseRejectionIsError.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule promiseRejectionIsError
* @flow
*/

require('Promise'); // make sure the default rejection handler is installed
const rejectionTracking = require('promise/setimmediate/rejection-tracking');

module.exports = () => {
rejectionTracking.enable({
allRejections: true,
onUnhandled: (id, error) => {
console.error(error);
},
onHandled: () => {},
});
};

0 comments on commit f87b673

Please sign in to comment.