From 8669c983f3a5ef1caecf89f77e044af0208b6b78 Mon Sep 17 00:00:00 2001 From: ramfox Date: Tue, 3 Sep 2024 10:55:38 -0400 Subject: [PATCH] fix node status test --- iroh-js/__test__/node.spec.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iroh-js/__test__/node.spec.mjs b/iroh-js/__test__/node.spec.mjs index 4517c932..62d23ff6 100644 --- a/iroh-js/__test__/node.spec.mjs +++ b/iroh-js/__test__/node.spec.mjs @@ -19,5 +19,5 @@ test('node status', async (t) => { const iroh = await Iroh.memory() const status = await iroh.node.status() - t.is(status.version, '0.23.0') + t.is(status.version, '0.24.0') })