Skip to content

Instantly share code, notes, and snippets.

@visualjeff
visualjeff / passport-mock.js
Created March 20, 2017 17:02 — forked from mweibel/passport-mock.js
Mock passport.js with an own strategy
/**
* Author: Michael Weibel <michael.weibel@gmail.com>
* License: MIT
*/
var passport = require('passport')
, StrategyMock = require('./strategy-mock');
module.exports = function(app, options) {
// create your verify function on your own -- should do similar things as