We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c436b6c commit c7ce9fcCopy full SHA for c7ce9fc
benchmarking/compare/index.js
@@ -2,7 +2,6 @@ import fs from 'node:fs';
2
import path from 'node:path';
3
import { execSync, fork } from 'node:child_process';
4
import { fileURLToPath } from 'node:url';
5
-import { benchmarks } from '../benchmarks.js';
6
7
// if (execSync('git status --porcelain').toString().trim()) {
8
// console.error('Working directory is not clean');
benchmarking/compare/runner.js
@@ -1,7 +1,7 @@
1
+import { reactivity_benchmarks } from '../benchmarks/reactivity/index.js';
const results = [];
-for (const benchmark of benchmarks) {
+for (const benchmark of reactivity_benchmarks) {
const result = await benchmark();
console.error(result.benchmark);
results.push(result);
0 commit comments