Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ const {
connectorSelectorExists,
} = workflowInsightsSelectors;

// Failing: See https://github.com/elastic/kibana/issues/262661
describe.skip(
describe(
'Workflow Insights (AB path)',
{
env: {
Expand Down Expand Up @@ -94,6 +93,10 @@ describe.skip(

connectorSelectorExists();
scanButtonShouldBe('enabled');

// Override pending stub to return running execution BEFORE clicking scan.
// Without this, the post-click poll immediately gets [] and completes the scan.
fetchRunningWorkflowInsights();
clickScanButton();

cy.wait('@createWorkflowInsights', { timeout: 30 * 1000 });
Expand Down
Loading