Skip to content

Commit 500d6d1

Browse files
committed
Update README.adoc
Signed-off-by: Gopal S Akshintala <[email protected]>
1 parent cf0ff94 commit 500d6d1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.adoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ endif::[]
2424

2525
*ReṼoman* is an API automation tool for JVM (Java/Kotlin) from the API-first SaaS company, *Salesforce*. It re-imagines API automation by letting you execute a Postman collection in a JVM program/test.
2626

27+
NOTE: NO licensed Postman SDKs are used inside this project. This is written ground up natively in JVM
28+
2729
'''
2830

2931
[.lead]
@@ -373,7 +375,7 @@ When there are many tests leveraging the same config with minor modifications, Y
373375
using `override...()` methods,
374376
which are present for all config attributes, to create a new instance of config.
375377

376-
CAUTION: The new instance created from common config using `override...()` replaces the attributes.
378+
IMPORTANT: The new instance created from common config using `override...()` replaces the attributes.
377379

378380
* For iterable attributes (like `List`, `Map` etc), intentionally there are no methods to `add` or `append` or `prepend` attributes when creating new instance, to prevent any mix-up with the order of attributes. You can use any collection appending utilities to prepend/append previous hooks.
379381

@@ -389,7 +391,7 @@ COMMON_CONFIG.overrideHooks(kotlin.collections.CollectionsKt.plus(COMMON_CONFIG.
389391
Kick.configure().from(configInstance1).from(configInstance2)...off();
390392
----
391393

392-
CAUTION: Iterable attributes (like `List`, `Map` etc) accept an `Iterable`. If you are particular about the order, make sure to pass an Ordered instance of `Iterable` (like `ArrayList`)
394+
IMPORTANT: Iterable attributes (like `List`, `Map` etc) accept an `Iterable`. If you are particular about the order, make sure to pass an Ordered instance of `Iterable` (like `ArrayList`)
393395

394396
== Troubleshooting DX
395397

@@ -607,7 +609,7 @@ Instead, you have a Java utility to generate/create it.
607609
You can invoke the utility in a pre-hook of a step and set the value in `rundown.mutableEnv`,
608610
so the later steps can pick up value for `+{{xyzId}}+` variable from the environment.
609611

610-
CAUTION: When a Step qualifies for more than one hook, hooks are executed in the same sequence they are configured, either using `hooks()` or `overrideHooks()`. Both these methods accept an `iterable`. Make sure to pass an Ordered Iterable (like `ArrayList`), if you are particular about Order in which hooks should execute for a Step.
612+
IMPORTANT: When a Step qualifies for more than one hook, hooks are executed in the same sequence they are configured, either using `hooks()` or `overrideHooks()`. Both these methods accept an `iterable`. Make sure to pass an Ordered Iterable (like `ArrayList`), if you are particular about Order in which hooks should execute for a Step.
611613

612614
[#_response_validations]
613615
==== Response Validations
@@ -646,7 +648,7 @@ pm.environment.set('$randomFutureDate', futureDateTime.format('YYYY-MM-DD'))
646648
pm.environment.set("$quantity", _.random(1, 10))
647649
----
648650

649-
CAUTION: It is not supported to load `node_modules` from jar. For example, `/Users/username/some-path/revoman-root/build/libs/revoman-root-0.40.0.jar!/js` is an invalid path. link:https://graalvm.slack.com/archives/CN9L59P61/p1710937088860679?thread_ts=1710767437.443019&cid=CN9L59P61[Refer this known issue]
651+
IMPORTANT: It is not supported to load `node_modules` from jar. For example, `/Users/username/some-path/revoman-root/build/libs/revoman-root-0.40.0.jar!/js` is an invalid path. link:https://graalvm.slack.com/archives/CN9L59P61/p1710937088860679?thread_ts=1710767437.443019&cid=CN9L59P61[Refer this known issue]
650652

651653
[TIP]
652654
====

0 commit comments

Comments
 (0)