config: Add 34 files
This commit is contained in:
21
test-14400f.js
Normal file
21
test-14400f.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { fetchBenchmarkData } = require('./scrapers/cpubenchmark');
|
||||
|
||||
async function test() {
|
||||
const benchmarkData = await fetchBenchmarkData(console.log);
|
||||
|
||||
console.log('\n=== Searching for 14400F ===');
|
||||
Object.keys(benchmarkData)
|
||||
.filter(name => name.includes('14400'))
|
||||
.forEach(name => {
|
||||
console.log(`${name}: ${benchmarkData[name]}`);
|
||||
});
|
||||
|
||||
console.log('\n=== Searching for 14700F ===');
|
||||
Object.keys(benchmarkData)
|
||||
.filter(name => name.includes('14700'))
|
||||
.forEach(name => {
|
||||
console.log(`${name}: ${benchmarkData[name]}`);
|
||||
});
|
||||
}
|
||||
|
||||
test().catch(console.error);
|
Reference in New Issue
Block a user