README.md in fitting-4.0.0 vs README.md in fitting-4.0.1

- old
+ new

@@ -310,43 +310,99 @@ #### host It is not necessary to immediately describe each host in detail, you can only specify its name and skip it until you are ready to documented it ```yaml -SkipAPIs: +SkipValidation: - host: api.cluster.dyte.in ``` #### prefix If you want to skip a specific prefix in the host ```yaml -SkipAPIs: +SkipValidation: - host: api.cluster.dyte.in prefix: /admin/api ``` #### method and path If you want to skip a specific request in the host ```yaml -SkipAPIs: +SkipValidation: - host: api.cluster.dyte.in method: GET path: /api/v1/cars ``` ### NoCov It is not necessary to immediately test each doc in detail, you can only specify its name and skip it until you are ready to test it +#### host ```yaml NoCov: - host: sso.test +``` + +#### method +```yaml +NoCov: + - host: sso.test method: GET +``` + +#### path +```yaml +NoCov: + - host: sso.test + method: GET path: /users/{userId} +``` + +#### code +```yaml +NoCov: + - host: sso.test + method: GET + path: /users/{userId} + code: 200 +``` + +#### content-type +```yaml +NoCov: + - host: sso.test + method: GET + path: /users/{userId} + code: 200 + content-type: application/json +``` + +#### combination +```yaml +NoCov: + - host: sso.test + method: GET + path: /users/{userId} + code: 200 + content-type: application/json + combination: oneOf.0 +``` + +#### combination_next +```yaml +NoCov: + - host: sso.test + method: GET + path: /users/{userId} + code: 200 + content-type: application/json + combination: oneOf.0 + combination_next: oneOf.0.required.users ``` ### Debug If you find bug, you can debug it or create task in this github project with new file `coverage/fitting.debug.yml`