From 585a08bbacf2cbbd5710c326887f247ba2da6111 Mon Sep 17 00:00:00 2001 From: BigBodyCobain <43977454+BigBodyCobain@users.noreply.github.com> Date: Wed, 6 May 2026 01:46:26 -0600 Subject: [PATCH] Fix MeshChat decomposition release gate --- frontend/src/__tests__/mesh/meshChatDecomposition.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/__tests__/mesh/meshChatDecomposition.test.ts b/frontend/src/__tests__/mesh/meshChatDecomposition.test.ts index c2ab616..6765c2a 100644 --- a/frontend/src/__tests__/mesh/meshChatDecomposition.test.ts +++ b/frontend/src/__tests__/mesh/meshChatDecomposition.test.ts @@ -179,8 +179,10 @@ describe('MeshChat decomposition — identity persistence', () => { const controller = readFile('useMeshChatController.ts'); expect(controller).toMatch(/from\s+['"]@\/mesh\/meshIdentity['"]/); expect(controller).toMatch(/getNodeIdentity/); - expect(controller).toMatch(/generateNodeKeys/); - expect(controller).toMatch(/signEvent/); + expect(controller).toMatch(/getStoredNodeDescriptor/); + expect(controller).toMatch(/nextSequence/); + expect(controller).toMatch(/verifyEventSignature/); + expect(controller).toMatch(/setSecureModeCached/); }); it('storage module imports from meshIdentity for seal operations', () => {