From dde48fa0a62518fcb186f442925943239d68cc39 Mon Sep 17 00:00:00 2001 From: dormouse-bot <287024035+dormouse-bot@users.noreply.github.com> Date: Tue, 8 Sep 2026 11:26:55 +0000 Subject: [PATCH] test(relay): say host, not burrow, where config means a hostname --- relay/test/config.test.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relay/test/config.test.mjs b/relay/test/config.test.mjs index a71326c2..9b1d3d7c 100644 --- a/relay/test/config.test.mjs +++ b/relay/test/config.test.mjs @@ -21,7 +21,7 @@ test('DORMOUSE_BIND_HOST pins the listen interface', () => { assert.equal(config.bindHost, '127.0.0.1'); }); -test('a blank DORMOUSE_BIND_HOST is treated as unset, not as an empty burrow', () => { +test('a blank DORMOUSE_BIND_HOST is treated as unset, not as an empty host', () => { assert.equal(readConfig({ DORMOUSE_BIND_HOST: '' }).bindHost, undefined); assert.equal(readConfig({ DORMOUSE_BIND_HOST: ' ' }).bindHost, undefined); }); @@ -40,7 +40,7 @@ test('DORMOUSE_ORIGIN wins over the port-derived default', () => { test('DORMOUSE_ORIGIN is normalized to a bare origin', () => { // The only normalization there is — `createApp` compares against this string - // rather than re-parsing it. A trailing slash, a path, or a capitalized burrow + // rather than re-parsing it. A trailing slash, a path, or a capitalized host // reads as correct in an `.env` and fails every compare it reaches: the // WebAuthn `clientData.origin` check, and the `/#pair?…` QR a Burrow // composes, which would scan to `//#pair`.