MPTReporterConfig interface
Optional configuration for MPT Reporter.
Example
import { defineConfig } from "@playwright/test";
export default defineConfig({
reporter: [["@azure/microsoft-playwright-testing/reporter", {
enableGitHubSummary: true
}]],
});
Properties
| enable |
Enable GitHub Actions annotations to diagnose test failures and deep link to MPT Portal. |
| enable |
Enable result publishing for the test run. This will upload the test result and artifacts to the MPT Portal. |
Property Details
enableGitHubSummary
Enable GitHub Actions annotations to diagnose test failures and deep link to MPT Portal.
public enableGitHubSummary?: boolean
Property Value
boolean
enableResultPublish
Enable result publishing for the test run. This will upload the test result and artifacts to the MPT Portal.
public enableResultPublish?: boolean
Property Value
boolean