mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Pass pluginId and plugin-path values through correctly (elastic/kibana-plugin-helpers#11)
Fixes elastic/kibana-plugin-helpers#10 Original commit: elastic/kibana-plugin-helpers@74defe4206
This commit is contained in:
parent
57ecccec89
commit
151041bf26
1 changed files with 2 additions and 2 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue