style: biome formatting

This commit is contained in:
Peter Steinberger
2026-01-01 15:31:36 +00:00
parent 596770942a
commit 09a2ab420b
8 changed files with 51 additions and 59 deletions

View File

@@ -7,9 +7,7 @@ const LIVE = process.env.ZAI_LIVE_TEST === "1" || process.env.LIVE === "1";
const describeLive = LIVE && ZAI_KEY ? describe : describe.skip;
describeLive("zai live", () => {
it(
"returns assistant text",
async () => {
it("returns assistant text", async () => {
const model = getModel("zai", "glm-4.7");
const res = await completeSimple(
model,
@@ -29,7 +27,5 @@ describeLive("zai live", () => {
.map((block) => block.text.trim())
.join(" ");
expect(text.length).toBeGreaterThan(0);
},
20000,
);
}, 20000);
});