UNPKG

simple-cas-interface

Version:

Provides an interface for authenticating and validating with a JASIG CAS server

10 lines (7 loc) 209 B
'use strict' const fs = require('fs') const path = require('path') module.exports.getFixture = function getFixture (name) { const fp = path.join(__dirname, 'fixtures', name) return fs.readFileSync(fp) }