From 2ab9b948a068e87844dda43cbb68939f96388543 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 4 Jan 2025 04:05:02 -0800 Subject: [PATCH] Restore additional block performance tests now that PowGpu is working. --- perf/block.perf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/block.perf.js b/perf/block.perf.js index 4719d48..8818c5e 100644 --- a/perf/block.perf.js +++ b/perf/block.perf.js @@ -35,7 +35,7 @@ await suite('Block performance', async () => { console.log(`Geometric: ${geometric} ms`) }) - await skip(`Customized PoW: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => { + await test(`Customized PoW: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => { const times = [] const block = new SendBlock( NANO_TEST_VECTORS.SEND_BLOCK.account, @@ -60,7 +60,7 @@ await suite('Block performance', async () => { console.log(`Geometric: ${geometric} ms`) }) - await skip(`Original PoW module: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => { + await test(`Original PoW module: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => { const times = [] for (let i = 0; i < COUNT; i++) { const start = performance.now() -- 2.34.1