We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ea7b2a commit 0ac07e9Copy full SHA for 0ac07e9
tests/txn.spec.ts
@@ -57,7 +57,7 @@ describe("txn", () => {
57
);
58
let resRdf = res.getRdf_asB64();
59
let buff = Buffer.from(resRdf, "base64");
60
- expect(buff).toEqual("Alice");
+ expect(buff.toString("utf-8")).toEqual("Alice");
61
62
res = await client
63
.newTxn()
@@ -70,7 +70,7 @@ describe("txn", () => {
70
71
resRdf = res.getRdf_asB64();
72
buff = Buffer.from(resRdf, "base64");
73
74
});
75
76
it("should ignore properties with non-string values", async () => {
0 commit comments