Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
docs little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
felipejfc committed Feb 13, 2019
1 parent d591f15 commit ed9f720
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ These configuration values configure the Prometheus monitoring service to check
* - prometheus.port
- 9191
- int
- Port which the Prometheus instance is running
- Port which the Prometheus instance will run

Server
===========
Expand Down
38 changes: 19 additions & 19 deletions docs/test_writing.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,25 +73,25 @@ Below is a base example of a spec file, for a working example, check: [spec](htt

```
{
"numberOfInstances": 1,
"sequentialOperations": [
{
"type": "request",
"uri": "connector.gameHandler.create",
"expect": {
"$response["code"]: {
"type": "string",
"value": "200"
}
},
"store": {
"playerAccessToken": {
"type": "string",
"value": "$response["game"]["roomCode"]"
}
}
}
]
"numberOfInstances": 1,
"sequentialOperations": [
{
"type": "request",
"uri": "connector.gameHandler.create",
"expect": {
"$response.code": {
"type": "string",
"value": "200"
}
},
"store": {
"playerAccessToken": {
"type": "string",
"value": "$response.token"
}
}
}
]
}
```

Expand Down

0 comments on commit ed9f720

Please sign in to comment.