You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move it to `/usr/local/bin` to make it executable from anywhere
33
+
22
34
```
23
-
mv api-test.sh /usr/local/bin/api-test
35
+
sudo mv api-test.sh /usr/local/bin/api-test
24
36
```
25
37
38
+
Check if the installation is successful
39
+
26
40
```
27
41
api-test --help
28
42
```
@@ -90,13 +104,19 @@ Example:
90
104
},
91
105
"url": "localhost:3000",
92
106
"header": {
93
-
"Authorization": "Bearer <ACCESS_TOKEN>"
107
+
"Authorization": "Bearer <ACCESS_TOKEN>"
94
108
}
95
109
}
96
110
```
97
111
98
112
The test cases are present in the `testCases` object. The main url for the api is store in `url` string. If the test cases share common headers add them in root `header` key.
0 commit comments