fix(response): reset response size on endpoint change (#9)

* fix(response): reset response size on endpoint change

* test(request): move test to the right directory
This commit is contained in:
Mazen Touati
2025-11-04 18:15:10 +01:00
committed by GitHub
parent cdde69c41b
commit da56fd3070
6 changed files with 152 additions and 4 deletions

View File

@@ -101,6 +101,9 @@ export interface PendingRequest {
/** Request execution duration in milliseconds */
durationInMs?: number;
/** Whether the request was executed at least once */
wasExecuted?: boolean;
}
export interface Request {