Skip to content

Commit

Permalink
fmt ts
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfujian committed Sep 25, 2023
1 parent 33aa19a commit 42bc60d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions internal/integration/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,12 +396,11 @@ test("transactionBlock", async () => {
expect(tag1.name).toEqual("tag1-updated");

await c.transaction(async function (tx: Tx) {
await tx.queryTag().create({ name: "tag5" })
await tx.queryTag().create({ name: "tag5" })
await tx.queryTag().create({ name: "tag5" });
await tx.queryTag().create({ name: "tag5" });
});
let count=await c.queryTag().count();
let count = await c.queryTag().count();
expect(count).toEqual(tag4);

});

test("changeJSON", async () => {
Expand Down

0 comments on commit 42bc60d

Please sign in to comment.