You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Attachments pushed via testInfo.attachments.push(...) are visible in the regular HTML Report but not visible in Playwright Testing Service report summary
Describe the solution you'd like
Expose testInfo.attachments.push(...) attachments in the same way they are available in HTML reports.
Additional context
playwright.service.config.ts
import{getServiceConfig,ServiceOS}from'@azure/microsoft-playwright-testing';import{defineConfig}from'@playwright/test';importconfigfrom'./playwright.config';importdotenvfrom'dotenv';dotenv.config({override: true});/* Learn more about service configuration at https://aka.ms/mpt/config */exportdefaultdefineConfig(config,getServiceConfig(config,{useCloudHostedBrowsers: true,serviceAuthType: 'ACCESS_TOKEN',exposeNetwork: '<loopback>',timeout: 30000,os: ServiceOS.LINUX}),{workers: 25,reporter: [['@azure/microsoft-playwright-testing/reporter'],['list'],['html',{outputFolder: './reports/html',open: 'never'}],['./e2e-tests/custom-reporter'],['./e2e-tests/junit-reporter',{outputFile: './reports/junit/test-results.xml'}]]});
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Attachments pushed via
testInfo.attachments.push(...)
are visible in the regular HTML Report but not visible in Playwright Testing Service report summaryDescribe the solution you'd like
Expose
testInfo.attachments.push(...)
attachments in the same way they are available in HTML reports.Additional context
playwright.service.config.ts
The text was updated successfully, but these errors were encountered: