Skip to content

Commit 27e4508

Browse files
committed
remove old test, add couterValue check
1 parent f88b1ea commit 27e4508

File tree

4 files changed

+154
-488
lines changed

4 files changed

+154
-488
lines changed

solana/tests/anchor.test.ts

+2-15
Original file line numberDiff line numberDiff line change
@@ -319,20 +319,6 @@ describe("example-native-token-transfers", () => {
319319
// get from balance
320320
const balance = await connection.getTokenAccountBalance(tokenAccount);
321321
expect(balance.value.amount).toBe("9900000");
322-
323-
// grab logs
324-
//await connection.confirmTransaction(redeemTx, "confirmed");
325-
//const tx = await anchor
326-
// .getProvider()
327-
// .connection.getParsedTransaction(redeemTx, {
328-
// commitment: "confirmed",
329-
// });
330-
// console.log(tx);
331-
// const log = tx.meta.logMessages[1];
332-
// const message = log.substring(log.indexOf(':') + 1);
333-
// console.log(message);
334-
// TODO: assert other stuff in the message
335-
// console.log(nttManagerMessage);
336322
});
337323

338324
it("Can receive tokens", async () => {
@@ -382,7 +368,8 @@ describe("example-native-token-transfers", () => {
382368
throw e;
383369
}
384370

385-
// expect(released).to.equal(true);
371+
// expect(released).toEqual(true);
372+
expect((await counterValue()).toString()).toEqual("2");
386373
});
387374
});
388375

solana/tests/example-native-token-transfer.ts

-299
This file was deleted.

0 commit comments

Comments
 (0)