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
Copy file name to clipboardExpand all lines: website/docs/contributing/add-new-language.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -144,8 +144,8 @@ This parameter **must** be the last parameter of a method, and allow a user to o
144
144
145
145
### Requesters
146
146
147
-
The requester needs to be configurable, or overwriten completely and use a user defined requester.
148
-
The default requester must be the classic HTTP requester, and it's possible to provide other alternatives like an Echo Requester that just send the request back.
147
+
The requester needs to be configurable and capable to be overwriten to use a user defined requester.
148
+
The default requester must be the classic HTTP requester, and it's possible to provide other alternatives like an [Echo Requester](https://github.com/algolia/api-clients-automation/blob/main/clients/algoliasearch-client-javascript/packages/client-common/src/createEchoRequester.ts) that just send the request back.
Copy file name to clipboardExpand all lines: website/docs/contributing/testing/common-test-suite.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: Common Test Suite
5
5
# Common Test Suite
6
6
7
7
The CTS gather multiple types of tests that make sure our API clients generate the correct requests and throws the correct error, it does not aim at testing the engine.
8
-
It is automatically generated for all languages, from JSON files and the specs.
8
+
It is automatically generated for all languages from JSON files and ensure properties are valid by checking specs.
9
9
10
10
:::info
11
11
@@ -72,7 +72,7 @@ The test generation script requires a JSON file name from the `operationId` (e.g
72
72
And that's it! If the name of the file matches an `operationId` in the spec, a test will be generated and will be calling the method name `operationId`.
73
73
74
74
The list of `queryParameters` must match exactly the actual value, the CTS has to check the number of query parameters and the value of each.
75
-
It's important to ensure the number of parameters because the API clients must not set default values, they should be handled by the engine.
75
+
**It's important to ensure the number of parameters because the API clients must not set default values, they should be handled by the engine.**
76
76
77
77
### Clients tests
78
78
@@ -190,16 +190,16 @@ When writing your template, here is a list of variables accessible from `mustach
0 commit comments