I have a bunch of e2e tests for my AngularJS web app. This is my current protractor.config.js file:
我的AngularJS web应用程序有很多e2e测试,这是我当前的protractor.config。js文件:
// __dirname retuns a path of this particular config file
// assuming that protractor.conf.js is in the root of the project
var basePath = __dirname;
exports.config = {
specs: [
"./Pages/ChartPicker/*.feature",
"./Pages/Chart/*.feature"
],
capabilities: {
"browserName": "chrome"
},
framework : "cucumber",
getPageTimeout : 20000,
allScriptsTimeout : 25000,
params: {
env : "env-not-set",
"env-dev" : {
baseUrl : "http://localhost:9001/"
},
"env-stage" : {
baseUrl : "http://localhost:9020/"
}
},
onPrepare: function () {
// "relativePath" - path, relative to "basePath" variable
global.requirePO = function (relativePath) {
return require(basePath + '\\PageObjects\\' + relativePath + '.po.js');
};
global.requireHelper = function (relativePath) {
return require(basePath + '\\UtilityJS\\' + relativePath + '.js');
};
}
};
How can I exclude one or more tests included in the .feature files?
如何排除包含在.feature文件中的一个或多个测试?
1 个解决方案
#1
2
In our protractor tests we use the xit functionality:
在量角器测试中,我们使用了xit功能:
xit('should test something', function() {
}).pend('Will be implemented later');
This pends the test until you are ready, however we are using jasmine2 so I'm wondering if this functionality is available to you? As far as I know you cannot exclude tests in the config file specifically - only by hiving off the tests to a don't test directory and not including that in your config.
这将在您准备好之前完成测试,但是我们正在使用jasmine2,所以我想知道您是否可以使用这个功能?就我所知,您不能专门在配置文件中排除测试——只能将测试划分为一个不测试目录,而不包括在配置中。
#1
2
In our protractor tests we use the xit functionality:
在量角器测试中,我们使用了xit功能:
xit('should test something', function() {
}).pend('Will be implemented later');
This pends the test until you are ready, however we are using jasmine2 so I'm wondering if this functionality is available to you? As far as I know you cannot exclude tests in the config file specifically - only by hiving off the tests to a don't test directory and not including that in your config.
这将在您准备好之前完成测试,但是我们正在使用jasmine2,所以我想知道您是否可以使用这个功能?就我所知,您不能专门在配置文件中排除测试——只能将测试划分为一个不测试目录,而不包括在配置中。