diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9c254fbb..855a90d0 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -80,7 +80,7 @@ jobs: run: yarn cypress install - run: yarn build - - run: yarn test:functional + - run: yarn lerna run test:functional --stream deploy_preview: runs-on: ubuntu-latest diff --git a/packages/embed/e2e/spec/functional/widget-newui.cy.ts b/packages/embed/e2e/spec/functional/widget-newui.cy.ts index 2800c3fd..9b6e25ed 100644 --- a/packages/embed/e2e/spec/functional/widget-newui.cy.ts +++ b/packages/embed/e2e/spec/functional/widget-newui.cy.ts @@ -55,7 +55,7 @@ function testMobile(path: string, title: string) { it('should reset the form when closing it', () => { cy.get('iframe').then(($iframe) => { const $body = $iframe.contents().find('body') - cy.wrap($body).find('[data-qa="ok-button"]').click() + cy.wrap($body).find('[data-qa="ok-button"]').click({ force: true }) cy.get('.tf-v1-widget-close').click() }) cy.wait(1000)