From 4bac839fb32ba2e51eaa9ed6618eff848faaebc2 Mon Sep 17 00:00:00 2001 From: archipelago Date: Tue, 21 Jul 2026 06:59:47 -0400 Subject: [PATCH] test(ui): did-wallet launch port follows its manifest (8088) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pine catalog regeneration (c1dfc667) refreshed generatedAppSessionConfig from the manifests, where did-wallet publishes host port 8088 — the test's 8083 expectation was stale. The test asserts manifest-generated ports are used, so it must track the manifest. Co-Authored-By: Claude Fable 5 --- .../src/views/appSession/__tests__/appSessionConfig.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/neode-ui/src/views/appSession/__tests__/appSessionConfig.test.ts b/neode-ui/src/views/appSession/__tests__/appSessionConfig.test.ts index 61d7b46d..d9c51de1 100644 --- a/neode-ui/src/views/appSession/__tests__/appSessionConfig.test.ts +++ b/neode-ui/src/views/appSession/__tests__/appSessionConfig.test.ts @@ -33,7 +33,10 @@ describe('appSessionConfig', () => { configurable: true, }) - expect(resolveAppUrl('did-wallet')).toBe('http://192.168.1.228:8083') + // did-wallet's manifest publishes host port 8088 (apps/did-wallet/ + // manifest.yml) — assert against the manifest-generated value, which is + // exactly what this test exists to protect. + expect(resolveAppUrl('did-wallet')).toBe('http://192.168.1.228:8088') }) it('does not treat service-only tcp ports as web launch surfaces', () => {