Skip to content

Commit

Permalink
test: skip broken frozen test
Browse files Browse the repository at this point in the history
  • Loading branch information
Justkant committed Jan 24, 2025
1 parent 6ce677e commit fe00cac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions libs/coin-modules/coin-solana/src/bridge.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,8 @@ describe("solana tokens", () => {
},
swapHistory: [],
};
test("token.transfer :: status is error: sender ATA is frozen", async () => {
// Skip frozen test as the address used is not an ATA and is not frozen
test.skip("token.transfer :: status is error: sender ATA is frozen", async () => {
const txModel: TokenTransferTransaction = {
kind: "token.transfer",
uiState: {
Expand Down Expand Up @@ -1225,7 +1226,8 @@ describe("solana tokens", () => {
expect(receivedTxStatus).toEqual(expectedTxStatus);
});

test("token.transfer :: status is error: recipient ATA is frozen", async () => {
// Skip frozen test as the address used is not an ATA and is not frozen
test.skip("token.transfer :: status is error: recipient ATA is frozen", async () => {
const txModel: TokenTransferTransaction = {
kind: "token.transfer",
uiState: {
Expand Down

0 comments on commit fe00cac

Please sign in to comment.