[tasks/test/browser] fix --kbnServer.tests_bundle flag

Original commit: elastic/kibana-plugin-helpers@12e7552adb
This commit is contained in:
spalger 2017-02-24 13:31:52 -07:00
parent 0a044bf726
commit c61d2bd11f

View file

@ -8,9 +8,9 @@ module.exports = function testBrowserAction(plugin, run, options) {
];
if (options.plugins) {
kbnServerArgs.push('--kbnServer.testsBundle.pluginId=' + options.plugins);
kbnServerArgs.push('--kbnServer.tests_bundle.pluginId=' + options.plugins);
} else {
kbnServerArgs.push('--kbnServer.testsBundle.pluginId=' + plugin.id);
kbnServerArgs.push('--kbnServer.tests_bundle.pluginId=' + plugin.id);
}
var cmd = 'npm';