Files
2026-04-09 13:19:47 -05:00

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;