Skip to content

Commit d404b69

Browse files
Fix activity stream test (#2689)
1 parent 4a535d6 commit d404b69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cypress/e2e/awx/administration/activity-stream.cy.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ describe('activity-stream', () => {
8888
cy.verifyPageTitle('Activity Stream');
8989
cy.filterTableByTextFilter('keyword', inventory.name);
9090
cy.get('tbody').find('tr').should('have.length', 1);
91-
cy.getByDataCy('event-column-cell').should('have.text', ` created inventory ${inventory.name}`);
91+
cy.get(`[data-cy='event-column-cell']`, { timeout: 30000 }).should(
92+
'have.text',
93+
` created inventory ${inventory.name}`
94+
);
9295
});
9396

9497
it('can filter by initiated by from activity stream list', function () {

0 commit comments

Comments
 (0)