mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Remove securityOss plugin (#113946) # Conflicts: # .eslintrc.js # .github/CODEOWNERS # api_docs/security_oss.mdx # packages/kbn-optimizer/limits.yml # scripts/functional_tests.js # x-pack/plugins/translations/translations/ja-JP.json # x-pack/plugins/translations/translations/zh-CN.json * Add unintentionally removed translations * Fix jest test
18 lines
833 B
JavaScript
18 lines
833 B
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/api_integration/config.js'),
|
|
require.resolve('../test/plugin_functional/config.ts'),
|
|
require.resolve('../test/interpreter_functional/config.ts'),
|
|
require.resolve('../test/ui_capabilities/newsfeed_err/config.ts'),
|
|
require.resolve('../test/examples/config.js'),
|
|
require.resolve('../test/new_visualize_flow/config.ts'),
|
|
]);
|