Improve the way to skip tests on specific condition
This commit is contained in:
@@ -35,12 +35,11 @@ module.exports = {
|
|||||||
chaiAsPromised.transferPromiseness = app.transferPromiseness
|
chaiAsPromised.transferPromiseness = app.transferPromiseness
|
||||||
return app;
|
return app;
|
||||||
},
|
},
|
||||||
shouldTestForPlatforms: function(testCase, platforms) {
|
// execute the test only when `condition` is true
|
||||||
if (platforms.indexOf(process.platform) !== -1) {
|
shouldTest: function(it, condition) {
|
||||||
return;
|
return condition ? it : it.skip;
|
||||||
}
|
},
|
||||||
else {
|
isOneOf(platforms) {
|
||||||
testCase.skip();
|
return (platforms.indexOf(process.platform) !== -1);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -68,8 +68,8 @@ describe('browser/settings.html', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
[true, false].forEach(function(v) {
|
[true, false].forEach(function(v) {
|
||||||
it(`should be saved and loaded: ${v}`, function() {
|
env.shouldTest(it, env.isOneOf(['win32', 'linux']))
|
||||||
env.shouldTestForPlatforms(this, ['win32', 'linux']);
|
(`should be saved and loaded: ${v}`, function() {
|
||||||
addClientCommands(this.app.client);
|
addClientCommands(this.app.client);
|
||||||
return this.app.client
|
return this.app.client
|
||||||
.loadSettingsPage()
|
.loadSettingsPage()
|
||||||
|
Reference in New Issue
Block a user