I have velocity installed and running on a meteor project.
I came across cucumber-mink, and I am struggling to get my scenarios to work with steps defined in cucumber-mink.
I added cucumber-mink to to cucumber dependencies
{
"name": "cucumber-tests",
"version": "1.0.0",
"description": "Dependencies for our Cucumber automation layer",
"private": true,
"dependencies": {
"underscore": "^1.8.3",
"cucumber-mink": "^1.0.2"
}
}
But I think I am missing something here. How do I get my scenarios to use steps defined in cucumber-mink?
I found this to work using the ChromeDriver.
Create 'features/support/mink.js'
And require 'mink.js' and your custom steps on the command line.