kibana/scripts/functional_tests.js
John Dorlus fbd38a7b22
Paramaterized Discover tests (#129684)
* Migrated Discover visualize tests to use CCS.

* Fixed.

* Forgot to add the config file to the functional tests command,

* Fixed nits in PR.

* Removed unused references.

* Removed unused references.

* Removed test file that was removed in the merge.

* Added saved_queries test to run when CCS is enabled and put test that wasn't supposed to be removed back.

* Used conditional in index pattern.
2022-04-12 21:34:41 -04:00

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.ccs.ts'),
require.resolve('../test/functional/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'),
]);