mavdi / grunt-cucumberjs

Grunt plugin for cucumber.js
MIT License
31 stars 36 forks source link

Report doesn't get generated when scripts are executed in conjunction with webdriverio #53

Closed SimitTomar closed 8 years ago

SimitTomar commented 8 years ago

I have my Grunt file defined as below: module.exports = function(grunt) {

grunt.initConfig({

        webdriver: {
            test: {
                configFile: 'tests/acceptance/wdio/conf/cuke.conf.js',
                options: {
                    cucumberjs: {
                        options: {
                            format: 'html',
                            output: 'my_report.html',
                            theme: 'bootstrap'
                        }
                    }
                }
            }
        }

});

grunt.loadNpmTasks('grunt-webdriver');
grunt.loadNpmTasks('grunt-cucumberjs');

};

The path to the Feature file and other necessary configuration is given in the cuke.conf.js. On running the task grunt Webdriver, the scripts executed fine but no Report is generated.

Thanks Simit

gkushang commented 8 years ago

@SimitTomar are you still facing the issue?

gkushang commented 8 years ago

@SimitTomar Closing this issue. Please try with the latest version and let us know if you are still facing this issue.

SimitTomar commented 8 years ago

Hey Kushang,

I switched to Gulp-protractor for generating Reports.

Thank Simit