grunt-protractor-runner icon indicating copy to clipboard operation
grunt-protractor-runner copied to clipboard

can't run

Open mvolkmann opened this issue 11 years ago • 5 comments

Here is my Gruntfile.js:

module.exports = function (grunt) {
  grunt.initConfig({
    protractor: {
      options: {
        configFile: 'protractor.conf.js'
      },
      all: {
      }
    }
  });
  grunt.loadNpmTasks('grunt-protractor-runner');
};

When I run "grunt protractor", I get this output and nothing else:

Running "protractor:all" (protractor) task

I tried adding a console.log call inside the task definition and that is not output.

mvolkmann avatar Oct 03 '13 15:10 mvolkmann

Please tell me your node, Gruntjs and protractor version. Which OS did you run on?

teerapap avatar Oct 07 '13 05:10 teerapap

Hi,

I was having this issue too.

% grunt --version
grunt-cli v0.1.13
grunt v0.4.2
% protractor --version
Version 0.19.0

I'm running Linux Mint.

Running "grunt protractor" would give me a "Done, without errors." message without actually running protractor.

"grunt protractor --verbose" gave interesting results:

...
...
+ protractor
Loading "Gruntfile.js" tasks...OK
>> No tasks were registered or unregistered.
...
...

It looks like the protractor task isn't being registered? In protractor_runner.js I switch the register signature from registerMultiTask to registerTask and dropped the special configFile block (configFile is pulled in by this.options()).

This fixed the problem for me.

Running "grunt protractor" ran protractor correctly with my specified config file.

I'm not sure if switching from a multi-task to a plain registerTask is the way to go, so I'm not submitting a pull request.

pcorey avatar Feb 22 '14 00:02 pcorey

I ran into this same issue and @pcorey's solution above got it up and running for me.

I'm not sure if switching from a multi-task to a plain registerTask is the way to go, so I'm not submitting a pull request.

I'm in the same boat on this, however, so I'd be interested to see a preferred resolution or alternative in place.

slucero avatar Feb 24 '14 21:02 slucero

Having the same issue. The fix by @julrich seems to fix the problem.

paulbakker avatar Mar 03 '14 09:03 paulbakker

@pcorey Thanks! I cannot reproduce this issue so I cannot debug it. I think I have to keep registering the task with registerMultiTask because someone may be using the task with multi configuration. However, thank you very much for this clue.

and the block below is for backward compatibility with my mistake in the early version.

if (!grunt.util._.isUndefined(this.data.configFile)) {
   opts.configFile = this.data.configFile;
}

teerapap avatar Mar 03 '14 11:03 teerapap