Skip to content

Commit 5cdc0e8

Browse files
committed
Add debug output
1 parent 104809b commit 5cdc0e8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

integration-tests/test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ describe("BankMsg", () => {
412412
describe("Env", () => {
413413
describe("TransactionInfo", () => {
414414
describe("TxCount", () => {
415-
test("execute", async () => {
415+
test.only("execute", async () => {
416416
jest.setTimeout(10 * 60 * 1_000);
417417
let txProm: Promise<TxResponse>[] = new Array(2);
418418
let success: boolean;
@@ -454,6 +454,9 @@ describe("Env", () => {
454454
.length
455455
).toBe(0);
456456
}
457+
console.log("DBG:TXS0:", JSON.stringify(txs[0].events, null, 2))
458+
console.log("DBG:TXS1:", JSON.stringify(txs[1].events, null, 2))
459+
console.log("DBG:CNT_VALS:", count_vals);
457460
if (Number(count_vals[0]) > Number(count_vals[1])) {
458461
[count_vals[0], count_vals[1]] = [count_vals[1], count_vals[0]];
459462
}

0 commit comments

Comments
 (0)