Skip to content

Commit

Permalink
[6.7] [server/logging/tests] use --oss to load kibana faster and avoi…
Browse files Browse the repository at this point in the history
…d timeouts (#32162) (#32166)

Backports the following commits to 6.7:
 - [server/logging/tests] use --oss to load kibana faster and avoid timeouts  (#32162)
  • Loading branch information
Spencer committed Feb 28, 2019
1 parent c3320d9 commit 08c5efb
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -81,7 +81,7 @@ describe('Server logging configuration', function () {
it('should be reloadable via SIGHUP process signaling', async function () {
expect.assertions(3);

child = spawn(process.execPath, [kibanaPath, '--config', testConfigFile], {
child = spawn(process.execPath, [kibanaPath, '--config', testConfigFile, '--oss'], {
stdio: 'pipe'
});

Expand Down Expand Up @@ -172,6 +172,7 @@ describe('Server logging configuration', function () {

child = spawn(process.execPath, [
kibanaPath,
'--oss',
'--config', testConfigFile,
'--logging.dest', logPath,
'--plugins.initialize', 'false',
Expand Down

0 comments on commit 08c5efb

Please sign in to comment.