Skip to content

Commit 98cc1fe

Browse files
mithunsasidharanMylesBorins
authored andcommittedJan 22, 2018
test: improve coverage for util.promisify
Add a test that confirms that non-function arguments passed to util.promisify throw an ERR_INVALID_ARG_TYPE error. PR-URL: #17591 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]>
1 parent 8f9ea23 commit 98cc1fe

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎test/parallel/test-util-promisify.js

+10
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,13 @@ const stat = promisify(fs.stat);
185185
})
186186
]);
187187
}
188+
189+
[undefined, null, true, 0, 'str', {}, [], Symbol()].forEach((input) => {
190+
common.expectsError(
191+
() => promisify(input),
192+
{
193+
code: 'ERR_INVALID_ARG_TYPE',
194+
type: TypeError,
195+
message: 'The "original" argument must be of type function'
196+
});
197+
});

0 commit comments

Comments
 (0)
Please sign in to comment.