tests: fix unhandled rejection log in test runner

This commit is contained in:
Evans Hauser 2018-05-21 20:42:07 -07:00
parent 40d8879fa3
commit ee7c99b908
No known key found for this signature in database
GPG key ID: 88AF586817F52EEC

View file

@ -5,7 +5,7 @@ process.env.NODE_ENV = 'test';
process.on('unhandledRejection', reason => {
console.log('Reason: ' + reason);
console.log('Reason: ' + reason.stack);
console.log('Stack: ' + reason.stack);
});
//apollo-server-core