flaverr.parseError.test.js 608 B

123456789101112131415
  1. describe('flaverr.parseError()', function _wouldBeArrowFnIfDidntNeedToSupportNode6(){
  2. describe('given a normal Error instance', function _wouldBeArrowFnIfDidntNeedToSupportNode6(){
  3. it('should return the same Error instance');
  4. });
  5. describe('given a bluebird/promise error thing', function _wouldBeArrowFnIfDidntNeedToSupportNode6(){
  6. it('should return the internal, wrapped Error instance as expected');
  7. });
  8. describe('given a Stripe SDK error thing', function _wouldBeArrowFnIfDidntNeedToSupportNode6(){
  9. it('should return the internal, wrapped Error instance as expected');
  10. });
  11. });