File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 84
84
docker exec -w /data/extensions/magento2 magento npx playwright install
85
85
86
86
- name : Run tests
87
- run : docker exec -w /data/extensions/magento2 magento npx playwright test --project=chromium
87
+ run : docker exec --env PW_TEST_HTML_REPORT_OPEN=never - w /data/extensions/magento2 magento npx playwright test --project=chromium --reporter=line
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ export class OrderConfirmationPage {
14
14
// Methods
15
15
async waitForProcessingAndReturnToStore ( ) {
16
16
await this . paymentBeingProcessedText ( ) . isVisible ( ) ;
17
- await expect ( this . orderConfirmedText ( ) ) . toBeVisible ( { timeout : 60000 } ) ;
17
+ await expect ( this . orderConfirmedText ( ) ) . toBeVisible ( { timeout : 1 } ) ;
18
18
}
19
19
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class PaymentConfirmationPage {
14
14
15
15
// Methods
16
16
async waitForProcessingAndContinue ( ) {
17
- await expect ( this . paymentProcessingText ( ) . or ( this . paymentConfirmedText ( ) ) ) . toBeVisible ( { timeout : 10000 } )
17
+ await expect ( this . paymentProcessingText ( ) . or ( this . paymentConfirmedText ( ) ) ) . toBeVisible ( { timeout : 15000 } )
18
18
await expect ( this . continueButton ( ) ) . toBeVisible ( ) ;
19
19
await this . continueButton ( ) . click ( ) ;
20
20
}
You can’t perform that action at this time.
0 commit comments