mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
* [services/pipeline_list] wait for loadingPipelines is not displayed
* run x-pack-ciGroup2 x20 times
* Revert "run x-pack-ciGroup2 x20 times"
This reverts commit 1fb4077c2c
.
This commit is contained in:
parent
1e416cafb1
commit
737b544418
2 changed files with 3 additions and 2 deletions
|
@ -95,7 +95,7 @@ class PipelineListUi extends React.Component {
|
|||
|
||||
this.setState({
|
||||
message: (
|
||||
<div>
|
||||
<div data-test-subj="loadingPipelines">
|
||||
<EuiLoadingSpinner size="m" />
|
||||
<FormattedMessage
|
||||
id="xpack.logstash.pipelineList.pipelinesLoadingMessage"
|
||||
|
|
|
@ -163,7 +163,8 @@ export function PipelineListProvider({ getService }) {
|
|||
await retry.waitFor('pipline list visible on screen', async () => {
|
||||
const container = await testSubjects.find(SUBJ_CONTAINER);
|
||||
const found = await container.findAllByCssSelector('table tbody');
|
||||
return found.length > 0;
|
||||
const isLoading = await testSubjects.exists('loadingPipelines');
|
||||
return (found.length > 0) && (isLoading === false);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue