From d8f9388610ba8e02d063a2a57d9ab8b16e0d4487 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Mon, 29 Jun 2026 18:52:55 +0000 Subject: [PATCH] chore: generate --- packages/opencode/test/config/config.test.ts | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/packages/opencode/test/config/config.test.ts b/packages/opencode/test/config/config.test.ts index 08e6264be9..4b68725852 100644 --- a/packages/opencode/test/config/config.test.ts +++ b/packages/opencode/test/config/config.test.ts @@ -98,15 +98,12 @@ const configLayer = ( client?: HttpClient.HttpClient } = {}, ) => - LayerNode.compile( - LayerNode.group([Config.node, FSUtil.node, Env.node, CrossSpawnSpawner.node]), - [ - [Auth.node, options.auth ?? AuthTest.empty], - [Account.node, options.account ?? AccountTest.empty], - [Npm.node, NpmTest.noop], - [httpClient, Layer.succeed(HttpClient.HttpClient, options.client ?? unexpectedHttp)], - ], - ) + LayerNode.compile(LayerNode.group([Config.node, FSUtil.node, Env.node, CrossSpawnSpawner.node]), [ + [Auth.node, options.auth ?? AuthTest.empty], + [Account.node, options.account ?? AccountTest.empty], + [Npm.node, NpmTest.noop], + [httpClient, Layer.succeed(HttpClient.HttpClient, options.client ?? unexpectedHttp)], + ]) const layer = configLayer()