v0.8.0
0.8.0 (2023-06-28)
This PR introduces the new flashlight measure command
flashlight.measure.mp4
Breaking changes
If you're using measurePerformance to measure performance programmatically, the typing has changed for the options:
Signature is now:
const measurePerformance = async (
bundleId: string,
testCase: TestCase,
options?: PerformanceTesterOptions
)
export interface PerformanceTesterOptions {
iterationCount: number;
maxRetries: number;
recordOptions: {
record: boolean;
size?: string;
bitRate?: number;
};
resultsFileOptions: {
path: string;
title: string;
};
}Features
- measure: measure in webapp without need for flipper (#121) (6f68b55)
- report add danger and safe zone to charts (#111) (da0d803)
- aws: ensure report gets deployed even for failed tests (#126) (53ebba8)