mirror of
https://github.com/elastic/kibana.git
synced 2025-04-18 23:21:39 -04:00
## Summary This PR adds the structure for workchat FTR tests and adds a few initial tests as an example. ### Details about initially added tests New test directories: - `x-pack/test_serverless/api_integration/test_suites/chat` - load a few common tests (that run on all project types) - run `platform` security tests (taken over from `search` project type) - `x-pack/test_serverless/functional/services/svl_chat_navigation.ts` - load the `home page` common test - run a simple navigation test, using the `svlChatNavigation` service that has been introduced as an example Note that these tests mostly serve as examples to prove things are actually running and will have to be adjusted / removed / extended over time. The purpose of this PR is NOT to add proper test coverage. Closes #213469 --------- Co-authored-by: Aleh Zasypkin <aleh.zasypkin@gmail.com>
15 lines
548 B
JSON
15 lines
548 B
JSON
{
|
|
"stateful": [
|
|
".buildkite/ftr_platform_stateful_configs.yml",
|
|
".buildkite/ftr_oblt_stateful_configs.yml",
|
|
".buildkite/ftr_security_stateful_configs.yml",
|
|
".buildkite/ftr_search_stateful_configs.yml"
|
|
],
|
|
"serverless" : [
|
|
".buildkite/ftr_base_serverless_configs.yml",
|
|
".buildkite/ftr_oblt_serverless_configs.yml",
|
|
".buildkite/ftr_security_serverless_configs.yml",
|
|
".buildkite/ftr_search_serverless_configs.yml",
|
|
".buildkite/ftr_chat_serverless_configs.yml"
|
|
]
|
|
}
|