From 74d39379d0c78a9fd8d665144af5a7a5dc055fbb Mon Sep 17 00:00:00 2001 From: Alexandru Stefan Date: Tue, 5 Nov 2024 13:26:01 +0200 Subject: [PATCH] chore: remove wrong test --- test/marinade-finance-instructions.spec.ts | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/test/marinade-finance-instructions.spec.ts b/test/marinade-finance-instructions.spec.ts index 6be8c40..81230e9 100644 --- a/test/marinade-finance-instructions.spec.ts +++ b/test/marinade-finance-instructions.spec.ts @@ -6,8 +6,6 @@ import { DirectedStakeSdk, findVoteRecords, } from '@marinade.finance/directed-stake-sdk' -import { getAccount } from '@solana/spl-token-3.x' -import { LAMPORTS_PER_SOL } from '@solana/web3.js' describe('Marinade Finance', () => { beforeAll(async () => { @@ -404,52 +402,4 @@ describe('Marinade Finance', () => { } }) }) - - describe('withdraw stake account', () => { - it('withdraw stake account', async () => { - const config = new MarinadeConfig({ - connection: TestWorld.CONNECTION, - publicKey: TestWorld.SDK_USER.publicKey, - }) - const marinade = new Marinade(config) - // for a validator could be deposited, it must be activated for at least 2 epochs - // i.e., "error: Deposited stake could not be activated yet. Wait for #2 epoch" - await TestWorld.waitForStakeAccountActivation({ - stakeAccount: TestWorld.STAKE_ACCOUNT_TO_WITHDRAW.publicKey, - connection: TestWorld.CONNECTION, - activatedAtLeastFor: 2, - }) - const { - transaction: transactionDeposit, - associatedMSolTokenAccountAddress, - } = await marinade.depositStakeAccount( - TestWorld.STAKE_ACCOUNT_TO_WITHDRAW.publicKey - ) - await TestWorld.executeTransaction(transactionDeposit) - const msolTokenBefore = await getAccount( - TestWorld.CONNECTION, - associatedMSolTokenAccountAddress - ) - const { transaction, splitStakeAccountKeypair } = - await marinade.withdrawStakeAccount( - LAMPORTS_PER_SOL, - TestWorld.STAKE_ACCOUNT_TO_WITHDRAW.publicKey - ) - const { executedSlot, executionSlot, err, logs, unitsConsumed } = - await TestWorld.executeTransaction(transaction, [ - splitStakeAccountKeypair, - ]) - expect(err).toBeNull() // no error at simulation - expect(executionSlot).toBeGreaterThanOrEqual(executedSlot) - expect(unitsConsumed).toBeGreaterThan(0) // something has been processed - console.log('Withdraw stake account tx logs:', logs) - const msolTokenAfter = await getAccount( - TestWorld.CONNECTION, - associatedMSolTokenAccountAddress - ) - expect( - (msolTokenBefore?.amount - msolTokenAfter?.amount).toString() - ).toEqual(LAMPORTS_PER_SOL.toString()) - }) - }) })