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
# Setup: | |
# tddium config:add suite EY_API_TOKEN xxxxxxxx | |
# (take EY_API_TOKEN value from ~/.eyrc) | |
# tddium config:add suite EY_DEPLOY_KEY yyyyyyy | |
# (EY_DEPLOY_KEY value is Base64-encoded content of your ~/.ssh/id_rsa OR any other ssh key authorised for a given EY env) | |
require 'timeout' | |
require 'etc' | |
require 'base64' |
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
# cucumber supports selenium by default, just mark features with @selenium tag | |
@selenium | |
Feature: This feature will be executed with selenium | |
... |