So, I have a story file that has parameters set for the story. I.E.
Given I do [action]
When The var is [num]
Then The server sends a [response] response
Examples:
|action|num|response|
|about|55|200|
|home|46|401|
Here's
my issue, it works fine in dev but when I move my code to Production,
the values have to change. Is there an easy way to set these variables across
the environments without manually changing them when I deploy?
I.E.
Dev:
Examples:
|action|num|response|
|about|55|200|
|home|46|401|
Prod:
Examples:
|action|num|response|
|about|60|200|
|home|93|401|
Thanks, MJ