UNPKG

passport-workshopper

Version:

Learn Passport.js authentication with CLI-based exercises

14 lines (10 loc) 444 B
const path = require('path'); const workshopperExercise = require('workshopper-exercise'); const filecheck = require('workshopper-exercise/filecheck'); const execute = require('workshopper-exercise/execute'); const comparestdout = require('workshopper-exercise/comparestdout'); const exercise = workshopperExercise(); exercise.use(filecheck()); exercise.use(execute()); exercise.use(comparestdout()); module.exports = exercise;