Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2025-01-09 15:09:54 +00:00
parent e519d2c048
commit d00ac8e279
3 changed files with 6 additions and 11 deletions

View File

@@ -216,23 +216,22 @@ jobs:
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
pattern: blob-report-* pattern: blob-report-*
path: all-blob-reports
# Ideally we'd use merge-multiple=true on download, but it is broken in certain cases # Ideally we'd use merge-multiple=true on download, but it is broken in certain cases
# https://github.com/microsoft/playwright/issues/29451 # https://github.com/microsoft/playwright/issues/29451
- name: Check report integrity - name: Check report integrity
if: inputs.skip != true if: inputs.skip != true
run: | run: |
for file in all-blob-reports/**/*.zip; do for file in blob-report-*/*.zip; do
unzip -t $file unzip -t $file
done done
- name: Merge blob reports - name: Merge blob reports
if: inputs.skip != true if: inputs.skip != true
run: for z in all-blob-reports/**/*.zip; do unar -r "$z" -o all-blob-reports-merged; done run: for z in blob-report-*/*.zip; do unar -r "$z" -o all-blob-reports; done
- name: Merge into HTML Report - name: Merge into HTML Report
if: inputs.skip != true if: inputs.skip != true
run: yarn playwright merge-reports --reporter=html,json,./playwright/flaky-reporter.ts,./playwright/stale-screenshot-reporter.ts ./all-blob-reports-merged run: yarn playwright merge-reports --reporter=html,json,./playwright/flaky-reporter.ts,./playwright/stale-screenshot-reporter.ts ./all-blob-reports
env: env:
# Only pass creds to the flaky-reporter on main branch runs # Only pass creds to the flaky-reporter on main branch runs
GITHUB_TOKEN: ${{ github.ref_name == 'develop' && secrets.ELEMENT_BOT_TOKEN || '' }} GITHUB_TOKEN: ${{ github.ref_name == 'develop' && secrets.ELEMENT_BOT_TOKEN || '' }}

View File

@@ -11,11 +11,7 @@ export default {
"test/**", "test/**",
"res/decoder-ring/**", "res/decoder-ring/**",
], ],
project: [ project: ["**/*.{js,ts,jsx,tsx}"],
"**/*.{js,ts,jsx,tsx}",
// This throws an error trying to load tenbin - https://knip.dev/reference/known-issues#exceptions-from-config-files
"!src/playwright.config.ts",
],
ignore: [ ignore: [
"docs/**", "docs/**",
"res/jitsi_external_api.min.js", "res/jitsi_external_api.min.js",

View File

@@ -71,9 +71,9 @@ export default defineConfig({
snapshotDir: "playwright/snapshots", snapshotDir: "playwright/snapshots",
snapshotPathTemplate: "{snapshotDir}/{testFilePath}/{arg}-{platform}{ext}", snapshotPathTemplate: "{snapshotDir}/{testFilePath}/{arg}-{platform}{ext}",
forbidOnly: !!process.env.CI, forbidOnly: !!process.env.CI,
testMatch: process.env.CI testMatch: process.env.SHARD
? splitTests({ ? splitTests({
shard: process.env.SHARD ?? "1/1", shard: process.env.SHARD,
pattern: ["playwright/e2e/**/*.spec.ts"], pattern: ["playwright/e2e/**/*.spec.ts"],
reportFile: "playwright-results.json", reportFile: "playwright-results.json",
}) })