1
1
import fs from "node:fs" ;
2
2
import path from "node:path" ;
3
- import { getCurrentSuite } from "@vitest/runner" ;
3
+ import { getCurrentSuite , setFn } from "@vitest/runner" ;
4
4
import { createChainable } from "@vitest/runner/utils" ;
5
5
import { store } from "./globalState.js" ;
6
6
import { BenchApi , BenchmarkOpts , BenchmarkRunOptsWithFn , PartialBy } from "../types.js" ;
@@ -29,6 +29,31 @@ export const bench: BenchApi = createBenchmarkFunction(function <T, T2>(
29
29
timeout = minMs * 1.5 ;
30
30
}
31
31
32
+ async function handler ( ) : Promise < void > {
33
+ // Ensure bench id is unique
34
+ if ( store . getResult ( opts . id ) && ! opts . skip ) {
35
+ throw Error ( `test titles must be unique, duplicated: '${ opts . id } '` ) ;
36
+ }
37
+
38
+ // Persist full results if requested. dir is created in `beforeAll`
39
+ const benchmarkResultsCsvDir = process . env . BENCHMARK_RESULTS_CSV_DIR ;
40
+ const persistRunsNs = Boolean ( benchmarkResultsCsvDir ) ;
41
+
42
+ const { result, runsNs} = await runBenchFn ( { ...options , fn : benchTask } , persistRunsNs ) ;
43
+
44
+ // Store result for:
45
+ // - to persist benchmark data latter
46
+ // - to render with the custom reporter
47
+ store . setResult ( opts . id , result ) ;
48
+
49
+ if ( benchmarkResultsCsvDir ) {
50
+ fs . mkdirSync ( benchmarkResultsCsvDir , { recursive : true } ) ;
51
+ const filename = `${ result . id } .csv` ;
52
+ const filepath = path . join ( benchmarkResultsCsvDir , filename ) ;
53
+ fs . writeFileSync ( filepath , runsNs . join ( "\n" ) ) ;
54
+ }
55
+ }
56
+
32
57
const task = currentSuite . task ( opts . id , {
33
58
skip : opts . skip ?? this . skip ,
34
59
only : opts . only ?? this . only ,
@@ -38,32 +63,9 @@ export const bench: BenchApi = createBenchmarkFunction(function <T, T2>(
38
63
meta : {
39
64
"chainsafe/benchmark" : true ,
40
65
} ,
41
- async handler ( ) {
42
- // Ensure bench id is unique
43
- if ( store . getResult ( opts . id ) && ! opts . skip ) {
44
- throw Error ( `test titles must be unique, duplicated: '${ opts . id } '` ) ;
45
- }
46
-
47
- // Persist full results if requested. dir is created in `beforeAll`
48
- const benchmarkResultsCsvDir = process . env . BENCHMARK_RESULTS_CSV_DIR ;
49
- const persistRunsNs = Boolean ( benchmarkResultsCsvDir ) ;
50
-
51
- const { result, runsNs} = await runBenchFn ( { ...options , fn : benchTask } , persistRunsNs ) ;
52
-
53
- // Store result for:
54
- // - to persist benchmark data latter
55
- // - to render with the custom reporter
56
- store . setResult ( opts . id , result ) ;
57
-
58
- if ( benchmarkResultsCsvDir ) {
59
- fs . mkdirSync ( benchmarkResultsCsvDir , { recursive : true } ) ;
60
- const filename = `${ result . id } .csv` ;
61
- const filepath = path . join ( benchmarkResultsCsvDir , filename ) ;
62
- fs . writeFileSync ( filepath , runsNs . join ( "\n" ) ) ;
63
- }
64
- } ,
65
66
} ) ;
66
67
68
+ setFn ( task , handler ) ;
67
69
store . setOptions ( task , opts ) ;
68
70
} ) ;
69
71
@@ -85,7 +87,7 @@ function coerceToOptsObj<T, T2>(
85
87
86
88
if ( typeof idOrOpts === "string" ) {
87
89
if ( ! fn ) throw Error ( "fn arg must be set" ) ;
88
- opts = { id : idOrOpts , fn, threshold : optionsDefault . threshold } ;
90
+ opts = { id : idOrOpts , fn} ;
89
91
} else {
90
92
if ( fn ) {
91
93
opts = { ...idOrOpts , fn} ;
0 commit comments