Skip to content

Commit 96e20df

Browse files
committed
attempt windows-friendly reproducible case for #2315
1 parent f1ac548 commit 96e20df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/fixtures/regression/issue-2315.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
describe('issue-2315: cannot read property currentRetry of undefined', function () {
22
before(function () {
3-
require('http').createServer().listen(1);
3+
process.nextTick(function () {
4+
throw new Error();
5+
});
46
});
57

68
it('something', function () {});

0 commit comments

Comments
 (0)