Fix Playwright github reporter to run in the pull_request context once more (#12509)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
eee0b2a9c3
commit
c6f6f1d2a2
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ export default defineConfig<TestOptions>({
|
|||
outputDir: "playwright/test-results",
|
||||
workers: 1,
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
reporter: process.env.CI ? "blob" : [["html", { outputFolder: "playwright/html-report" }]],
|
||||
reporter: process.env.CI ? [["blob"], ["github"]] : [["html", { outputFolder: "playwright/html-report" }]],
|
||||
projects: [
|
||||
{
|
||||
name: "Legacy Crypto",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue