11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
/**
|
|
A mock Request for testing jwt extractor functions
|
|
*/
|
|
function Request() {
|
|
this.method = 'GET';
|
|
this.url = '/';
|
|
this.headers = {};
|
|
}
|
|
|
|
module.exports = Request;
|