UNPKG

playwright-performance-reporter

Version:

Measure and publish performance metrics from browser dev-tools when running playwright

11 lines (10 loc) 257 B
import { type TestStep } from '@playwright/test/reporter'; /** * Get id and name from test hierarchy * * @param testStep step from test suite */ export declare function buildTestStepIdentifier(testStep: TestStep): { id: string; name: string; };