Test actual behavior for Hide Menu Bar

This commit is contained in:
Yuya Ochiai
2016-05-21 20:57:59 +09:00
parent b52dfa5348
commit 05bcda5eab
2 changed files with 33 additions and 24 deletions

View File

@@ -25,5 +25,13 @@ module.exports = {
path: electron_binary_path,
args: [`${path.join(source_root_dir, 'dist')}`, '--config-file=' + config_file_path]
});
},
shouldTestForPlatforms: function(testCase, platforms) {
if (platforms.indexOf(process.platform) !== -1) {
return;
}
else {
testCase.skip();
}
}
}