ryanrosello-og

Results 27 comments of ryanrosello-og

thanks for the suggestion @akarsh17 I tried the following: Declared the `recordVideo` directly into the config ```javascript const config: PlaywrightTestConfig = { reporter: [['dot'],['html']], use: { trace:'on', contextOptions : {...

hey @dgozman , I seem to be encountering a different error from above using `@playwright/test@next` ``` Running 55 tests using 4 workers, shard 1 of 4 --   | Renewing session...

@dgozman I then rolled back to `1.23.4`, rerun the tests with the `PWDEBUGIMPL` set, here's the output ``` 🚀 browser.isConnected() > attempting to close true --   | node:internal/process/promises:279   | triggerUncaughtException(err,...

hey @dgozman I raised a ticket with BrowserStack concerning this problem and they acknowledged that this issue on their end. Currently, they have yet to support v1.25 and provided me...

sounds good, if its still problematic after their fix. I will just open a new issue and link to here. Unfortunately, no public link exists for the browserstack issue. All...

hey @perftest22 try creating your own helper function to set the default settings. For example: ```typescript import lighthouseDesktopConfig from 'lighthouse/lighthouse-core/config/lr-desktop-config'; import lighthouseMobileConfig from 'lighthouse/lighthouse-core/config/lr-mobile-config'; function lightHouseConfig(options: { name: string; page:...

hey @fasatrix , I was also experiencing wild numbers when I run my tests. I then stumbled upon this article which has a good explanation as to why the numbers...

Removal of the `"--ipc=host"` did not work for me. This issue seems to be related a user permission issue not having correct rights to folder. I got this working for...

yeah this is a legit bug. Seems this bit of the code https://github.com/ryanrosello-og/playwright-slack-report/blob/main/src/SlackReporter.ts#L77 is treating zero as falsy so its always falling back to showing 10 failures even though you...

@samixchoumi it turns out your config is using the wrong key, use `"maxNumberOfFailures": 0,` instead of `"maxNumberOfFailuresToShow": 0,` When you provided `maxNumberOfFailuresToShow`, it was causing it to fallback to the...