Disable tests that are currently not working

This commit is contained in:
Simon Warta 2023-11-22 17:19:27 +01:00
parent 6ecf76a3ed
commit 9e6b82cdac
2 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import {
nonNegativeIntegerMatcher,
pendingWithoutSimapp,
simapp,
simapp50Enabled,
simappEnabled,
validator,
} from "../../testutils.spec";
@ -204,6 +205,7 @@ describe("gov messages", () => {
it("works with Amino JSON sign mode", async () => {
pendingWithoutSimapp();
if (simapp50Enabled()) pending("Not working, see https://github.com/cosmos/cosmos-sdk/issues/18546");
assert(voterWalletAmino);
assert(proposalId, "Missing proposal ID");
const client = await SigningStargateClient.connectWithSigner(simapp.tendermintUrl, voterWalletAmino);

View File

@ -12,6 +12,7 @@ import {
faucet,
pendingWithoutSimapp,
simapp,
simapp50Enabled,
} from "../../testutils.spec";
import { MsgCreateValidatorEncodeObject, MsgEditValidatorEncodeObject } from "./messages";
@ -95,6 +96,7 @@ describe("staking messages", () => {
it("works with Amino JSON sign mode", async () => {
pendingWithoutSimapp();
if (simapp50Enabled()) pending("Not working, see https://github.com/cosmos/cosmos-sdk/issues/18546");
const valWallet = await Secp256k1HdWallet.generate();
const [valAccount] = await valWallet.getAccounts();
@ -235,6 +237,7 @@ describe("staking messages", () => {
it("works with Amino JSON sign mode", async () => {
pendingWithoutSimapp();
if (simapp50Enabled()) pending("Not working, see https://github.com/cosmos/cosmos-sdk/issues/18546");
const valWallet = await Secp256k1HdWallet.generate();
const [valAccount] = await valWallet.getAccounts();