فهرست منبع

chore: generate

opencode-agent[bot] 2 ماه پیش
والد
کامیت
d8f9388610
1فایلهای تغییر یافته به همراه6 افزوده شده و 9 حذف شده
  1. 6 9
      packages/opencode/test/config/config.test.ts

+ 6 - 9
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()