From 12e7552adb855e2ff9dbbfb2d4a823f586ae5edb 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 --- tasks/test/browser/test_browser_action.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/test/browser/test_browser_action.js b/tasks/test/browser/test_browser_action.js index 5fe4b67..ea521f9 100644 --- a/tasks/test/browser/test_browser_action.js +++ b/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';