opencode-agent[bot] 5 месяцев назад
Родитель
Сommit
a6ef9e9206
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/opencode/test/account/service.test.ts

+ 3 - 1
packages/opencode/test/account/service.test.ts

@@ -46,7 +46,9 @@ const login = () =>
 
 const deviceTokenClient = (body: unknown, status = 400) =>
   HttpClient.make((req) =>
-    Effect.succeed(req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404)),
+    Effect.succeed(
+      req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404),
+    ),
   )
 
 const poll = (body: unknown, status = 400) =>