-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
be more friendly about async "overspecified" errors; closes #2407
- Loading branch information
Showing
3 changed files
with
85 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
describe('async thing', function() { | ||
it('should not just timeout if "done" never called (and report more info)', function(done) { | ||
return new Promise(function(resolve, reject) { | ||
reject('foo'); | ||
}); | ||
}); | ||
|
||
it('should not just timeout if "done" called but Promise never fulfilled', function(done) { | ||
return new Promise(function(resolve) { | ||
setTimeout(function() { | ||
done(null, 'bar'); | ||
}); | ||
}); | ||
}); | ||
|
||
it('should not just timeout if "done" called but Promise never fulfilled (but is also synchronous)', function(done) { | ||
return new Promise(function(resolve) { | ||
done(null, 'bar'); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters