Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 15 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | module.exports = { |
||
2 | method: 'POST', |
||
3 | url: '/testId', |
||
4 | headers: { |
||
5 | 'x-forwarded-for': 'testIp', |
||
6 | 'content-type': 'text/plain', |
||
7 | }, |
||
8 | connection: { |
||
9 | socket: { |
||
10 | remoteAddress: 'testIp', |
||
11 | }, |
||
12 | }, |
||
13 | socket: {}, |
||
14 | body: 'Test with plain text body.', |
||
15 | }; |
||
16 |