mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary This PR introduces a new Search Home page. Currently, the homepage experience differs across Classic nav, Solution nav, and Serverless. Our goal is to unify these into a consistent, foundational experience that we can iterate on to create a more personalized and customizable homepage for Elasticsearch users. The new page includes: - An option to connect to Elasticsearch - File upload and sample dataset ingestion - Entry points to explore Elastic’s AI Search capabilities - Quick access to Observability and Security solutions - Links to Search Labs, Python notebooks, and Elasticsearch documentation https://github.com/user-attachments/assets/7b1b5330-59b4-43b7-aa5b-000fcd2654e2 ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The `release_note:breaking` label should be applied in these situations. - [x] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) ### Identify risks Does this PR introduce any risks? For example, consider risks like hard to test bugs, performance regression, potential of data loss. Describe the risk, its severity, and mitigation for each identified risk. Invite stakeholders and evaluate how to proceed before merging. - [ ] [See some risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) - [ ] ... --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Lisa Cawley <lcawley@elastic.co> Co-authored-by: Rodney Norris <rodney@tattdcodemonkey.com>
34 lines
1.6 KiB
TypeScript
34 lines
1.6 KiB
TypeScript
/*
|
|
* 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; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import { FtrProviderContext } from '../../ftr_provider_context';
|
|
|
|
export default function ({ loadTestFile }: FtrProviderContext) {
|
|
describe('serverless search UI', function () {
|
|
this.tags(['esGate']);
|
|
|
|
loadTestFile(require.resolve('./navigation'));
|
|
loadTestFile(require.resolve('./elasticsearch_start.ts'));
|
|
loadTestFile(require.resolve('./search_index_detail.ts'));
|
|
loadTestFile(require.resolve('./getting_started'));
|
|
loadTestFile(require.resolve('./index_management'));
|
|
loadTestFile(require.resolve('./connectors/connectors_overview'));
|
|
loadTestFile(require.resolve('./default_dataview'));
|
|
loadTestFile(require.resolve('./pipelines'));
|
|
loadTestFile(require.resolve('./cases/attachment_framework'));
|
|
loadTestFile(require.resolve('./dashboards/build_dashboard'));
|
|
loadTestFile(require.resolve('./dashboards/import_dashboard'));
|
|
loadTestFile(require.resolve('./advanced_settings'));
|
|
loadTestFile(require.resolve('./rules/rule_details'));
|
|
loadTestFile(require.resolve('./console_notebooks'));
|
|
loadTestFile(require.resolve('./search_playground/playground_overview'));
|
|
loadTestFile(require.resolve('./ml'));
|
|
loadTestFile(require.resolve('./custom_role_access'));
|
|
loadTestFile(require.resolve('./inference_management'));
|
|
loadTestFile(require.resolve('./search_homepage'));
|
|
});
|
|
}
|