Last active
December 15, 2015 19:19
-
-
Save aslakhellesoy/5310313 to your computer and use it in GitHub Desktop.
Cucumber configuration
This file contains hidden or 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
| { | |
| "options": { | |
| "glue": "classpath:com/company/app/stepdefs", | |
| "format": ["pretty", "json:target/cucumber.json"] | |
| }, | |
| "environments": { | |
| "firefox": {"driver": "org.openqa.selenium.firefox.FirefoxDriver"}, | |
| "chrome": {"driver": "org.openqa.selenium.chrome.ChromeDriver"} | |
| } | |
| } |
This file contains hidden or 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
| [options] | |
| glue = "classpath:com/company/app/stepdefs", | |
| format = ["pretty", "json:target/cucumber.json"] | |
| [environments.firefox] | |
| driver = "org.openqa.selenium.firefox.FirefoxDriver" | |
| [environments.chrome] | |
| driver = "org.openqa.selenium.chrome.ChromeDriver" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment