You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **`runs`**: number of runs per series for the particular test
381
381
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs (default 1).
382
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
382
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
383
383
- **`wrapper`**: React component, such as a `Provider`, which the `ui` will be wrapped with. Note: the render duration of the `wrapper` itself is excluded from the results; only the wrapped component is measured.
384
384
- **`scenario`**: a custom async function, which defines user interaction within the UI by utilising RNTL or RTL functions
385
385
- **`writeFile`**: should write output to file (default `true`)
@@ -401,14 +401,14 @@ async function measureFunction(
401
401
interface MeasureFunctionOptions {
402
402
runs?: number;
403
403
warmupRuns?: number;
404
-
dropOutliers?: boolean;
404
+
removeOutliers?: boolean;
405
405
writeFile?: boolean;
406
406
}
407
407
```
408
408
409
409
- **`runs`**: number of runs per series for the particular test
410
410
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs
411
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
411
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
412
412
- **`writeFile`**: should write output to file (default `true`)
413
413
414
414
#### `measureAsyncFunction` function
@@ -430,14 +430,14 @@ async function measureAsyncFunction(
430
430
interface MeasureAsyncFunctionOptions {
431
431
runs?: number;
432
432
warmupRuns?: number;
433
-
dropOutliers?: boolean;
433
+
removeOutliers?: boolean;
434
434
writeFile?: boolean;
435
435
}
436
436
```
437
437
438
438
- **`runs`**: number of runs per series for the particular test
439
439
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs
440
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
440
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
441
441
- **`writeFile`**: should write output to file (default `true`)
- **`runs`**: number of runs per series for the particular test
61
61
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs (default: 1)
62
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
62
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
63
63
- **`wrapper`**: React component, such as a `Provider`, which the `ui` will be wrapped with. Note: the render duration of the `wrapper` itself is excluded from the results, only the wrapped component is measured.
64
64
- **`scenario`**: a custom async function, which defines user interaction within the ui by utilized RNTL functions
65
65
- **`writeFile`**: should write output to file (default `true`)
@@ -93,14 +93,14 @@ test('fib 30', async () => {
93
93
interfaceMeasureFunctionOptions {
94
94
runs?:number;
95
95
warmupRuns?:number;
96
-
dropOutliers?:boolean;
96
+
removeOutliers?:boolean;
97
97
writeFile?:boolean;
98
98
}
99
99
```
100
100
101
101
- **`runs`**: number of runs per series for the particular test
102
102
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs
103
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
103
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
104
104
- **`writeFile`**: should write output to file (default `true`)
105
105
106
106
### `measureAsyncFunction` function {#measure-async-function}
- **`runs`**: number of runs per series for the particular test
381
381
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs (default 1).
382
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
382
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
383
383
- **`wrapper`**: React component, such as a `Provider`, which the `ui` will be wrapped with. Note: the render duration of the `wrapper` itself is excluded from the results; only the wrapped component is measured.
384
384
- **`scenario`**: a custom async function, which defines user interaction within the UI by utilising RNTL or RTL functions
385
385
- **`writeFile`**: should write output to file (default `true`)
@@ -401,14 +401,14 @@ async function measureFunction(
401
401
interface MeasureFunctionOptions {
402
402
runs?: number;
403
403
warmupRuns?: number;
404
-
dropOutliers?: boolean;
404
+
removeOutliers?: boolean;
405
405
writeFile?: boolean;
406
406
}
407
407
```
408
408
409
409
- **`runs`**: number of runs per series for the particular test
410
410
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs
411
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
411
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
412
412
- **`writeFile`**: should write output to file (default `true`)
413
413
414
414
#### `measureAsyncFunction` function
@@ -430,14 +430,14 @@ async function measureAsyncFunction(
430
430
interface MeasureAsyncFunctionOptions {
431
431
runs?: number;
432
432
warmupRuns?: number;
433
-
dropOutliers?: boolean;
433
+
removeOutliers?: boolean;
434
434
writeFile?: boolean;
435
435
}
436
436
```
437
437
438
438
- **`runs`**: number of runs per series for the particular test
439
439
- **`warmupRuns`**: number of additional warmup runs that will be done and discarded before the actual runs
440
-
- **`dropOutliers`**: should remove statistical outlier results (default: `true`)
440
+
- **`removeOutliers`**: should remove statistical outlier results (default: `true`)
441
441
- **`writeFile`**: should write output to file (default `true`)
0 commit comments