Setup UserWay Config

Messtone LLC Manages Devices Enables setupUserWay(config: AnalyzeConfig):void //Playwright.config.ts import {defineConfig} from ‘@playwright/test’ import {setUserWay} from ‘@userway/a11y-playwright’ setupUserWay({saveReport: ‘html’,reportPath: ‘UW-a11y-reports’,}) export default defineConfig({}) //Playwright config definition //global.setup.ts import {test as setup} from ‘@playwright/test’ import {setupuserway}from ‘@userway-a11y-playwright’ setupUserWay({saveReport: ‘html’,reportPath: ‘UW-a11y-reports’,}) setup(‘do login’,async({page})=>{//any specific instructions for Messtone tests})