File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import fs from 'node:fs';
2
2
import path from 'node:path' ;
3
3
import { execSync , fork } from 'node:child_process' ;
4
4
import { fileURLToPath } from 'node:url' ;
5
- import { benchmarks } from '../benchmarks.js' ;
6
5
7
6
// if (execSync('git status --porcelain').toString().trim()) {
8
7
// console.error('Working directory is not clean');
Original file line number Diff line number Diff line change 1
- import { benchmarks } from '../benchmarks.js' ;
1
+ import { reactivity_benchmarks } from '../benchmarks/reactivity/index .js' ;
2
2
3
3
const results = [ ] ;
4
- for ( const benchmark of benchmarks ) {
4
+ for ( const benchmark of reactivity_benchmarks ) {
5
5
const result = await benchmark ( ) ;
6
6
console . error ( result . benchmark ) ;
7
7
results . push ( result ) ;
You can’t perform that action at this time.
0 commit comments