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
{{ message }}
This repository was archived by the owner on Sep 17, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: docs/cloud/README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,3 +39,25 @@ APId cloud runs in multiple reagions worldwide. Here is a list of the current on
39
39
| eu-north | Sweden |
40
40
| eu-central | Germany |
41
41
| sa-east | Brazil |
42
+
43
+
## Timeouts
44
+
45
+
The execution timeout is set to 30 seconds. If your API does not respond within that time an error is returned.
46
+
47
+
## Billing
48
+
49
+
We've tried making the billing model as simple as possible. Each account has a quota of units they can use each month for running their tests on the cloud infrastructure.
50
+
51
+
Each unit corresponds to 100ms of execution time of a step - thus the response time of the API for each step.
52
+
53
+
You are not billed for any interpolation or step preparation (which is done on the machine you're running the CLI on).
| is | string | yes | | What content of the body (or selector content) to expect |
227
+
| selector | string | no | - | A selector to get part of the body. The underlying implementation is using `gjson`, reference of syntax can be found [here](https://github.com/tidwall/gjson/blob/master/SYNTAX.md) |
228
+
| subset | bool | no | no | If the `is` block is a subset of the body (or selector content). See [examples](../../testapi/tests). |
229
+
| keysOnly | bool | no | no | If values should be disregarded when checking for equality. All types of values except objects are ignored. Objects will still be recursively checked. See [examples](../../testapi/tests). |
0 commit comments