0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/test/unit/partials/plugin/authenticate.passthroug.js

11 lines
245 B
JavaScript
Raw Normal View History

module.exports = function ( ) {
return {
2018-07-14 05:16:27 -05:00
authenticate( user, pass, callback ) {
/* user and pass are used here to forward errors
and success types respectively for testing purposes */
callback(user, pass);
}
};
};