A collection of sentences for cucumber js - cucumber 2+
npm install @sylvainle/angular-protractor-cucumber
// protractor.conf.js
exports.config = {
allScriptsTimeout: 99999,
directConnect: true,
capabilities: {'browserName': 'chrome'},
baseUrl: 'https://angularjs.org',
framework: 'custom',
frameworkPath: 'node_modules/protractor-cucumber-framework',
specs: ['test/e2e/*/.feature'],
cucumberOpts: {
require: [
'node_modules/@sylvainle/angular-protractor-cucumber/src/step-definitions/*/.js',
'node_modules/@sylvainle/angular-protractor-cucumber/src/step-definitions/support/*/.js',
'test/e2e/step-definitions/*/.js',
'test/e2e/support/*/.js'
],
format: 'progress',
},
resultJsonOutputFile: './results/e2e/results.json'
};
`
- test it with a simple example :
`
Feature: Simple feature
Scenario: Simple test
Given I wait 2 seconds
``