如何使用grunt和量角器进行单e2e测试

时间:2014-04-23 09:25:11

标签: javascript angularjs gruntjs protractor end-to-end

我认为这是可能的,而且实际上非常简单,但我对grunt和量角器都是新手,我无法在线找到答案(也许我使用了错误的搜索条件)。

我在文件test/e2e/Recipients.js中进行了以下e2e测试:

describe('Recipients Tab', function() {

    beforeEach(function () {
        browser.get('#/recipients');
    });

    it('should have no e-mail list', function () {
        expect(element(by.css('accordion')).isPresent()).toBe(false);
    });
});

目前,我正在这样做:

grunt e2e

我的量角器配置文件:

exports.config = {
    seleniumAddress: 'http://localhost:4444/wd/hub',
    capabilities: {
        'browserName': 'chrome'
    },
    specs: ['../e2e/**/*.js'],
    baseUrl : 'http://localhost:8080/spr',

    jasmineNodeOpts: {
        showColors: true // Use colors in the command line report.
    }
};

当然这会运行我的所有测试,但是在我开发特定测试时,我不想运行整个测试。我想运行这个文件。

我该怎么做?有旗帜还是什么?

由于

4 个答案:

答案 0 :(得分:9)

或者,将测试组织为一组test suites

exports.config = {
  seleniumAddress: 'http://localhost:4444/wd/hub',
  capabilities: { 'browserName': 'chrome' },

  suites: {
    homepage: 'tests/e2e/homepage/**/*Spec.js',
    search: ['tests/e2e/contact_search/**/*Spec.js']
  },

  jasmineNodeOpts: { showColors: true }
};

使用--suite命令行参数运行特定的测试套件:

protractor protractor.conf.js --suite homepage

另请参阅:Protractor for AngularJS

答案 1 :(得分:7)

您只需将specs选项传递给量角器CLI即可。 specs选项需要运行以逗号分隔的JS文件列表。

您需要编辑Gruntfile.js以将此选项传递给量角器。

答案 2 :(得分:0)

您只需在描述之前为x添加前缀,而不需要运行。例如,如果您不需要按照以下方式运行测试套装,

xdescribe('Recipients Tab', function() {

beforeEach(function () {
    browser.get('#/recipients');
});

it('should have no e-mail list', function () {
    expect(element(by.css('accordion')).isPresent()).toBe(false);
});

});

答案 3 :(得分:0)

由于你正在使用Grunt + Protractor,我建议不要在'protractor.conf.js'中设置单个测试,而使用'grunt-protractor-runner'Grunt模块设置'Gruntfile.js'。因此,您可以根据需要使用不同的配置设置任意数量的单个或多个测试

基本上,您将其包含在顶部:

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

然后,在grunt.initConfig中设置你的任务:

grunt.initConfig({
.....
.....
.....
      protractor: {
      options: {
        configFile: "protractor.conf.js",
        keepAlive: true // If false, the grunt process stops when the test fails.
    },
    singleTestRun: {
        options: {
            args: {
                baseUrl: "http://yourDomain.com", // setting up base URL here
                specs: [
                    './specs/*.js',
                    './another/specs/*.js'
                ],
                capabilities: {
                    'browserName': 'chrome',
                    shardTestFiles: false
                },
            }
        }
    },
},
.....
.....
.....
});

然后,在同一个文件中注册Grunt任务:

grunt.registerTask('run-test', ['someTaskOne', 'protractor:singleTestRun', 'shell:someshellscript']);

然后,使用以下命令运行此任务:

grunt run-test