使用grunt-protractor-runner在grunt中发送规范

时间:2014-02-06 06:30:32

标签: gruntjs protractor specs runner

我正在使用grunt-protractor-runner插件,在量角器目标中,我想发送包含要运行的测试的specs param。 在grunt文件中,我的目标如下所示:

testIntegration: 
{
  options: 
  {
    args: {
      specs: ['test1.js'],
      browser: 'firefox'
  } 
}

量角器父任务选项包含量角器配置文件的设置。

运行此目标时出现此错误: $ grunt量角器:testIntegration 运行“量角器:testIntegration”(量角器)任务 启动selenium独立服务器...... Selenium独立服务器开始于...... 警告:模式t与任何文件都不匹配。 警告:模式e与任何文件都不匹配。 警告:模式s与任何文件都不匹配。 警告:模式t与任何文件都不匹配。 警告:模式1与任何文件都不匹配。 警告:模式j与任何文件都不匹配。 警告:模式s与任何文件都不匹配。

然后再出现一些错误。 同一行在Protractor配置文件中运行良好。 尝试了其他一些变化但没有成功。

我错过了什么?有什么想法吗?

1 个答案:

答案 0 :(得分:2)

尝试此配置:

module.exports = function(grunt) {

  // Project configuration
  grunt.initConfig({
  pkg: grunt.file.readJSON('package.json'),
  protractor: {
    options: {
      keepAlive: true,
      singleRun: false,
      configFile: "PROTRACTOR_CONFIG_FILE.js"
    },
    run_firefox: {
      options: {
        args: {
          browser: "firefox"
        }
      }
    }
  });

  // load grunt-protractor-runner
  grunt.loadNpmTasks('grunt-protractor-runner');

  // register tasks
  grunt.registerTask('default', 'Run Protractor using Firefox',
    ['protractor:run_firefox']);
};

有趣的是,如果您阅读每条错误消息,它会拼出“test1.js”。看起来它没有正确读取配置文件,可能是因为你没有使用grunt.file.readJSON('FILENAME.json')