forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fleet] Fix duplicate data streams being shown in UI (elastic#89812) (e…
…lastic#90063) * Add API integration tests for data streams list, including one that is expected to fail due to reliance on number of backing indices * Use ES data streams API as source of truth for list of data streams, and only query against backing indices afterwards * Get package name from data stream meta info * Increate retry timeout * Move initial info requests inside Promise.all Co-authored-by: Kibana Machine <[email protected]> # Conflicts: # x-pack/test/fleet_api_integration/apis/index.js
- Loading branch information
Showing
6 changed files
with
343 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
x-pack/test/fleet_api_integration/apis/data_streams/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
export default function loadTests({ loadTestFile }) { | ||
describe('Data Stream Endpoints', () => { | ||
loadTestFile(require.resolve('./list')); | ||
}); | ||
} |
Oops, something went wrong.