From 8feac88195fe161ca27a7c4fd2d38b351a832f98 Mon Sep 17 00:00:00 2001 From: Spencer Date: Wed, 27 Feb 2019 15:32:22 -0800 Subject: [PATCH] [server/logging/tests] use --oss to load kibana faster and avoid timeouts (#32162) --- src/cli/serve/integration_tests/reload_logging_config.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/serve/integration_tests/reload_logging_config.test.js b/src/cli/serve/integration_tests/reload_logging_config.test.js index f3922b30ab7091..fbb8fd0431e84f 100644 --- a/src/cli/serve/integration_tests/reload_logging_config.test.js +++ b/src/cli/serve/integration_tests/reload_logging_config.test.js @@ -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' }); @@ -174,6 +174,7 @@ describe('Server logging configuration', function () { child = spawn(process.execPath, [ kibanaPath, + '--oss', '--config', testConfigFile, '--logging.dest', logPath, '--plugins.initialize', 'false',