hydrate.bench: move the `events` variable above the bench

This commit is contained in:
Alex Gleason 2024-05-25 10:49:09 -05:00
parent 3c950fb4ba
commit 1ffc1fc8f4
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 4 additions and 6 deletions

View File

@ -4,12 +4,10 @@ import { jsonlEvents } from '@/test.ts';
const testEvents = await jsonlEvents('fixtures/hydrated.jsonl');
const testStats = JSON.parse(await Deno.readTextFile('fixtures/stats.json'));
Deno.bench('assembleEvents with home feed', (b) => {
// The first 20 events in this file are my home feed.
// The rest are events that would be hydrated by the store.
const events = testEvents.slice(0, 20);
b.start();
// The first 20 events in this file are my home feed.
// The rest are events that would be hydrated by the store.
const events = testEvents.slice(0, 20);
Deno.bench('assembleEvents with home feed', () => {
assembleEvents(events, testEvents, testStats);
});