-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(actions): add "When I set environment variable"
- Loading branch information
1 parent
0dd12ee
commit 6f28951
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { When } from '@badeball/cypress-cucumber-preprocessor'; | ||
|
||
/** | ||
* When I set environment variable: | ||
* | ||
* ```gherkin | ||
* When I set environment variable {string} to {string} | ||
* ``` | ||
* | ||
* @example | ||
* | ||
* Set environment variable `host` to `http://server.dev.local`: | ||
* | ||
* ```gherkin | ||
* When I set evironment variable "host" to "http://server.dev.local" | ||
* ``` | ||
* | ||
* @remarks | ||
* | ||
* **Scope** | ||
* | ||
* Environment variables set using `Cypress.env` _are only in scope for the current spec file_. | ||
* | ||
* Cypress runs each spec file in isolation: the browser is exited between specs. Environment variables added or changed in one spec won't be visible in other specs. | ||
* | ||
* **Difference between OS-level and Cypress environment variables** | ||
* | ||
* In Cypress, "environment variables" are variables that are accessible via `Cypress.env`. These are not the same as OS-level environment variables. However, **it is possible to set Cypress environment variables from OS-level environment variables**. | ||
*/ | ||
export function When_I_set_environment_variable(key: string, value: string) { | ||
Cypress.env(key, value); | ||
} | ||
|
||
When( | ||
'I set environment variable {string} to {string}', | ||
When_I_set_environment_variable | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters