playwright-performance
Advanced tools
Comparing version 2.0.2 to 2.0.3
import extendPlaywrightPerformance from './src/extend-playwright-performance'; | ||
import { PerformanceOptions, PerformanceWorker, PlaywrightPerformance } from './src/performance-fixture'; | ||
import type { PerformanceOptions, PerformanceWorker, PlaywrightPerformance } from './src/performance-fixture'; | ||
export default extendPlaywrightPerformance; | ||
export type { PerformanceOptions, PlaywrightPerformance, PerformanceWorker }; |
@@ -10,5 +10,5 @@ export interface Options { | ||
} | ||
export declare function setOptions(options: Partial<Options>): void; | ||
export declare function setOptions(options: Options): void; | ||
export declare function getOptions(): Options; | ||
export declare function resetOptions(): void; | ||
export declare const performanceResultsDirectoryPath = ""; |
import { PerformanceOptions } from './performance-fixture'; | ||
declare function extendPlaywrightPerformance(customOptions?: Partial<PerformanceOptions>): any; | ||
declare function extendPlaywrightPerformance(customOptions?: PerformanceOptions): any; | ||
export default extendPlaywrightPerformance; |
{ | ||
"name": "playwright-performance", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "Playwright plugin for analyzing test flow performance", | ||
@@ -22,3 +22,3 @@ "files": [ | ||
"@playwright/test": "^1.49.1", | ||
"@types/node": "^20.11.27", | ||
"@types/node": "^22.10.6", | ||
"@types/objects-to-csv": "^1.3.1" | ||
@@ -25,0 +25,0 @@ }, |
41196