Skip to content

Commit

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

Backports the following commits to 7.x:
 - [server/logging/tests] use --oss to load kibana faster and avoid timeouts  (elastic#32162)
  • Loading branch information
Spencer authored Feb 28, 2019
1 parent f850802 commit f807708
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,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 @@ -174,6 +174,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 f807708

Please sign in to comment.