Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
Pass pluginId and plugin-path values through correctly (#11)
Browse files Browse the repository at this point in the history
Fixes #10
  • Loading branch information
meganwalker-ibm authored and spalger committed Nov 11, 2016
1 parent 2d26645 commit 74defe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/test/browser/test_browser_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module.exports = function (plugin) {
var execFileSync = require('child_process').execFileSync;

var kbnServerArgs = [
'--kbnServer.testsBundle.pluginId', plugin.id,
'--kbnServer.plugin-path', plugin.root
'--kbnServer.testsBundle.pluginId=' + plugin.id,
'--kbnServer.plugin-path=' + plugin.root
];

var cmd = 'npm';
Expand Down

0 comments on commit 74defe4

Please sign in to comment.