Skip to content

Commit

Permalink
test: improve coverage for util.promisify
Browse files Browse the repository at this point in the history
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 <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
  • Loading branch information
mithunsasidharan authored and MylesBorins committed Jan 8, 2018
1 parent 7008719 commit f16eca4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/parallel/test-util-promisify.js
Expand Up @@ -184,3 +184,13 @@ const stat = promisify(fs.stat);
})
]);
}

[undefined, null, true, 0, 'str', {}, [], Symbol()].forEach((input) => {
common.expectsError(
() => promisify(input),
{
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "original" argument must be of type Function'
});
});

0 comments on commit f16eca4

Please sign in to comment.