Skip to content

Instantly share code, notes, and snippets.

@pellekrogholt
Created December 15, 2015 08:26
Show Gist options
  • Select an option

  • Save pellekrogholt/7bb0fb14a7639a04a3ad to your computer and use it in GitHub Desktop.

Select an option

Save pellekrogholt/7bb0fb14a7639a04a3ad to your computer and use it in GitHub Desktop.

Revisions

  1. pellekrogholt created this gist Dec 15, 2015.
    21 changes: 21 additions & 0 deletions cucumber.conf.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    // protractor configuration file for cucumber
    exports.config = {
    allScriptsTimeout: 11000,

    specs: [
    'features/**/*.feature'
    ],

    capabilities: {
    'browserName': 'chrome'
    },

    baseUrl: 'http://192.168.1.187:8000',
    seleniumAddress: 'http://127.0.0.1:4444/wd/hub',

    framework: 'cucumber',
    cucumberOpts: {
    require: 'features/',
    format: "pretty"
    }
    };