mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* Added CCS test for data view functionality. * Changed how we are approaching the test. Just adding a remote to exercise the CCS functionality. * Adjusted test to use correct port for remote cluster. * Added and corrected config for the tests to be able to run. * Changed test title. * Added functional ccs suite to functional test runner script. * Changed config.ts to config.js * Moved es to before clause. * Added await for an async call. * Added await for an async call. * Updated saved queries test to use CCS. One test is failing, all others are passing. * Merge branch 'main' of github.com:elastic/kibana into CCS_Functional_Test_POC * Fixed a reference. * Removed the OSS tests since we created CCS versions of them. * Removed tests from index file. * Restored test files per comment with matthias. * Did some cleanup of comments. Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
32 lines
1.6 KiB
JavaScript
32 lines
1.6 KiB
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
require('../src/setup_node_env');
|
|
require('@kbn/test').runTestsCli([
|
|
require.resolve('../test/functional/config.js'),
|
|
require.resolve('../test/functional_ccs/config.js'),
|
|
require.resolve('../test/plugin_functional/config.ts'),
|
|
require.resolve('../test/ui_capabilities/newsfeed_err/config.ts'),
|
|
require.resolve('../test/new_visualize_flow/config.ts'),
|
|
require.resolve('../test/interactive_setup_api_integration/enrollment_flow.config.ts'),
|
|
require.resolve('../test/interactive_setup_api_integration/manual_configuration_flow.config.ts'),
|
|
require.resolve(
|
|
'../test/interactive_setup_api_integration/manual_configuration_flow_without_tls.config.ts'
|
|
),
|
|
require.resolve('../test/interactive_setup_functional/enrollment_token.config.ts'),
|
|
require.resolve('../test/interactive_setup_functional/manual_configuration.config.ts'),
|
|
require.resolve(
|
|
'../test/interactive_setup_functional/manual_configuration_without_security.config.ts'
|
|
),
|
|
require.resolve(
|
|
'../test/interactive_setup_functional/manual_configuration_without_tls.config.ts'
|
|
),
|
|
require.resolve('../test/api_integration/config.js'),
|
|
require.resolve('../test/interpreter_functional/config.ts'),
|
|
require.resolve('../test/examples/config.js'),
|
|
]);
|