Skip to content

Commit a31ba87

Browse files
[DSC-1956] change wait function in community create e2e test
1 parent afb70b0 commit a31ba87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cypress/e2e/community-create.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ beforeEach(() => {
44
});
55

66
it('should show loading component while saving', () => {
7-
cy.intercept('**/api/authz/authorizations/search/objects**canSubmit**').as('canSubmit');
8-
cy.wait('@canSubmit');
7+
cy.intercept('**/api/config/properties/submit.type-bind.field').as('typeBind');
8+
cy.wait('@typeBind');
99

1010
const title = 'Test Community Title';
1111
cy.get('#title').type(title);

0 commit comments

Comments
 (0)