Skip to content

Commit 06223e5

Browse files
authored
Update README.md
1 parent c1f84eb commit 06223e5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ For the sake of consistency, all `utils` functions expect the global `pm` object
2323
### Functions
2424
The `utils` functions are logically grouped in nested classes (namespaces) and include:
2525

26-
* [Folder level functions](#folder-level-functions)
27-
* [Primary test functions](#primary-test-functions)
28-
* [Data validation functions](#data-validation-functions)
29-
* [Trace functions](#trace-functions)
30-
* [General purpose functions](#general-purpose-functions)
26+
* [Folder level functions](#folder-level-functions) for test initialization
27+
* [Primary test functions](#primary-test-functions) for testing request results
28+
* [Data validation functions](#data-validation-functions) for checking data returned from requests
29+
* [Trace functions](#trace-functions) for trace logging
30+
* [General purpose functions](#general-purpose-functions) for miscellaneour operations
3131

3232
## Folder level functions
3333
Use folder level functions to run test or pre-request code attached to test collection folders (not request scripts). Folder level functions are grouped under the `utils.run` namespace and include:
@@ -126,7 +126,7 @@ utils.test.initialize(pm, null, function() {
126126
```
127127

128128
### `utils.test.positive`
129-
Use to run negative tests. By default, it will check the response's HTTP status code against the specified value. If the returned HTTP status code matches the expected value, this function will call additional custom code if one is specified via the `process` parameter.
129+
Use to run positive tests. By default, it will check the response's HTTP status code against the specified value. If the returned HTTP status code matches the expected value, this function will call additional custom code if one is specified via the `process` parameter.
130130

131131
#### Prototype
132132
```JavaScript
@@ -722,4 +722,4 @@ utils.skip(pm, "User-Get-Positive-ById");
722722
```
723723

724724
## Miscellaneous functions
725-
The undocumented functions and properties are intended for internal use and unless you want to extend or rewrite the framework, you should not care about them.
725+
The undocumented functions and properties are intended for internal use and unless you want to extend or rewrite the framework, you should not care about them.

0 commit comments

Comments
 (0)