Skip to content

Commit

Permalink
chore: remove dep warn and add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
fospring committed Dec 10, 2023
1 parent 63f3ece commit 2e954f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/__tests__/standard-nft/test_approval.ava.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ test("Approve call", async (t) => {
account_id: approvalReceiver.accountId,
msg: "return-now",
},
{ attachedDeposit: "600000000000000000000", gas: "300 Tgas" }
{ attachedDeposit: "610000000000000000000", gas: "300 Tgas" }
);
t.is(res, "cool");

Expand Down
3 changes: 3 additions & 0 deletions examples/__tests__/standard-nft/test_core.ava.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ test("Transfer call fast return to sender", async (t) => {
},
{ attachedDeposit: "1", gas: MAX_GAS }
);
console.log("res.result=", res.result);
t.is(
Buffer.from(res.result.status.SuccessValue, "base64").toString(),
"false"
Expand All @@ -132,6 +133,7 @@ test("Transfer call slow return to sender", async (t) => {
},
{ attachedDeposit: "1", gas: MAX_GAS }
);
console.log("res.result=", res.result);
t.is(
Buffer.from(res.result.status.SuccessValue, "base64").toString(),
"false"
Expand Down Expand Up @@ -201,6 +203,7 @@ test("Transfer call receiver panics", async (t) => {
},
{ attachedDeposit: "1", gas: MAX_GAS }
);
console.log("res.result=", res.result);
t.is(
Buffer.from(res.result.status.SuccessValue, "base64").toString(),
"false"
Expand Down
1 change: 0 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2e954f3

Please sign in to comment.