1

我在我的项目中使用 Grunt 和 angular 和 node。对于我使用 cucumber + protractor + grunt-stubby的测试,这是我来自 Gruntfile.js 的注册任务

grunt.registerTask('test', [
    'selenium_start',
    'clean:server',    
    'ngconstant:testing',
    'concurrent:test',
    'autoprefixer',
    'connect:test',
    'karma',
    'stubby',
    'protractor',
    'selenium_stop',
  ]);

我的问题是当量角器任务运行时,stubbys 任务结束了。

4

1 回答 1

1

我的猜测 - 你需要使用 grunt-protractor-runner 和 grunt-protractor-webdriver 并告诉 grunt 和 protractor 哪个端口正在监听,例如:

grunt.initConfig({
    ..
    // Grunt server settings
    connect: {
        stubby: {
            options: {
                ..
                port: 8001
                .. 
            }
        }
    },
    ..
    protractor: {
        ..
        stubby: {
            options: {
                ..
                args: {
                     baseUrl: 'http://localhost:8001'
                }
                ..
            }
        }
        ..
    }
    ..

});
..
grunt.registerTask('test', [    
    ..,
    'karma',
    'connect:stubby',
    'stubby',
    'protractor:stubby'
]);
..
于 2015-05-09T06:57:41.967 回答