From 1e04bccf9fb8ad2cbf06f20f36610d80435b2fd2 Mon Sep 17 00:00:00 2001 From: Andre Staltz Date: Fri, 24 Nov 2023 12:08:03 +0200 Subject: [PATCH] minor refactor in tests --- test/feed-decay.test.js | 2 +- test/feed-holes.test.js | 2 +- test/orphan-weave.test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/feed-decay.test.js b/test/feed-decay.test.js index ca6ec89..6e3d410 100644 --- a/test/feed-decay.test.js +++ b/test/feed-decay.test.js @@ -7,7 +7,7 @@ function getTexts(msgs) { return msgs.filter((msg) => msg.data?.text).map((msg) => msg.data.text) } -test('feed decay', async (t) => { +test('Feed decay', async (t) => { const alice = createPeer({ name: 'alice', gc: { maxLogBytes: 100 * 1024 * 1024 }, diff --git a/test/feed-holes.test.js b/test/feed-holes.test.js index d7cf446..cf30bc6 100644 --- a/test/feed-holes.test.js +++ b/test/feed-holes.test.js @@ -7,7 +7,7 @@ function getTexts(msgs) { return msgs.filter((msg) => msg.data?.text).map((msg) => msg.data.text) } -test('feed holes', async (t) => { +test('Feed holes', async (t) => { const alice = createPeer({ name: 'alice', gc: { maxLogBytes: 100 * 1024 * 1024 }, diff --git a/test/orphan-weave.test.js b/test/orphan-weave.test.js index b19a842..489eef1 100644 --- a/test/orphan-weave.test.js +++ b/test/orphan-weave.test.js @@ -11,7 +11,7 @@ function getTexts(msgs) { return msgs.filter((msg) => msg.data?.text).map((msg) => msg.data.text) } -test('orphan weave msgs', async (t) => { +test('Orphan weave msgs', async (t) => { const alice = createPeer({ name: 'alice', gc: { maxLogBytes: 100 * 1024 * 1024 },