From ce356d396374078f76fe1b3d04daeb828b01bb67 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 12 Aug 2026 20:19:12 -0700 Subject: [PATCH] test(gateway): follow worker service construction boundary --- src/gateway/server-import-boundary.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gateway/server-import-boundary.test.ts b/src/gateway/server-import-boundary.test.ts index 5379d4c1fd0b..b45d3b9efde4 100644 --- a/src/gateway/server-import-boundary.test.ts +++ b/src/gateway/server-import-boundary.test.ts @@ -214,7 +214,10 @@ describe("gateway startup import boundaries", () => { const workerStartup = readSource("src/gateway/server-worker-environment-startup.ts"); const runtimeLoad = "loadWorkerEnvironmentRuntimeModule()"; const prepareStart = workerStartup.indexOf("const prepareInstallation = async"); - const serviceStart = workerStartup.indexOf("const workerEnvironmentService =", prepareStart); + const serviceStart = workerStartup.indexOf( + "const workerEnvironmentServiceBase =", + prepareStart, + ); const identityStart = workerStartup.indexOf("resolveSshIdentity: async", serviceStart); const bootstrapStart = workerStartup.indexOf("bootstrapWorker: async", serviceStart); const loggerStart = workerStartup.indexOf("logger: params.log.child", bootstrapStart);