1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| // Jest Snapshot v1, https://goo.gl/fbAQLP
|
| exports[`http://httpbin.org/post 1`] = `
| Object {
| "args": Object {},
| "data": "<body/>",
| "files": Object {},
| "form": Object {},
| "headers": Object {
| "Accept-Encoding": "gzip,deflate",
| "Connection": "close",
| "Content-Length": "7",
| "Host": "httpbin.org",
| },
| "json": null,
| "url": "http://httpbin.org/post",
| }
| `;
|
| exports[`http://httpbin.org/post form 1`] = `
| Object {
| "args": Object {},
| "data": "",
| "files": Object {},
| "form": Object {
| "foo": "bar",
| },
| "headers": Object {
| "Accept-Encoding": "gzip,deflate",
| "Connection": "close",
| "Content-Length": "161",
| "Host": "httpbin.org",
| },
| "json": null,
| "url": "http://httpbin.org/post",
| }
| `;
|
| exports[`http://httpbin.org/post json 1`] = `
| Object {
| "args": Object {},
| "data": "{\\"foo\\":\\"bar\\"}",
| "files": Object {},
| "form": Object {},
| "headers": Object {
| "Accept-Encoding": "gzip,deflate",
| "Connection": "close",
| "Content-Length": "13",
| "Content-Type": "application/json",
| "Host": "httpbin.org",
| },
| "json": Object {
| "foo": "bar",
| },
| "url": "http://httpbin.org/post",
| }
| `;
|
|