Is there any way to use the stored value across test files? #238
Unanswered
mihirsasmal
asked this question in
Q&A
Replies: 1 comment 8 replies
-
Stored values are available across test files in the same run context. It is not possible if you are running one test file at a time. For example mocha test1.js
mocha test2.js |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm using the
stores()
to store some response values which will be used in different module API call.When I'm using
$S{variableName}
, it works within same test file multiple tests and api calls. However, it does not resolve when I'm using in another test file.Is there anyway to use those values across test files?
Thanks,
Mihir
Beta Was this translation helpful? Give feedback.
All reactions