dragonroll/backend/node_modules/passport-jwt/test/mock_request.js

11 lines
178 B
JavaScript
Raw Normal View History

2024-09-21 17:08:36 +00:00
/**
A mock Request for testing jwt extractor functions
*/
function Request() {
this.method = 'GET';
this.url = '/';
this.headers = {};
}
module.exports = Request;