From c61d2bd11ffa24ca31fa46ac64b5607ef6b0e097 Mon Sep 17 00:00:00 2001 From: spalger Date: Fri, 24 Feb 2017 13:31:52 -0700 Subject: [PATCH] [tasks/test/browser] fix --kbnServer.tests_bundle flag Original commit: elastic/kibana-plugin-helpers@12e7552adb855e2ff9dbbfb2d4a823f586ae5edb --- .../tasks/test/browser/test_browser_action.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/kbn-plugin-helpers/tasks/test/browser/test_browser_action.js b/packages/kbn-plugin-helpers/tasks/test/browser/test_browser_action.js index 5fe4b673289c..ea521f91e78c 100644 --- a/packages/kbn-plugin-helpers/tasks/test/browser/test_browser_action.js +++ b/packages/kbn-plugin-helpers/tasks/test/browser/test_browser_action.js @@ -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';