Ankit Kumar
Results
1
comments of
Ankit Kumar
``` // playwright.config.ts import type { PlaywrightTestConfig } from '@playwright/test'; const config: PlaywrightTestConfig = { reporter: [ ['html', { outputFolder: path.join('playwright-report', generateTimestamp()) }]] }; export default config; function generateTimestamp() {...