Disable tests that are currently not working
This commit is contained in:
parent
6ecf76a3ed
commit
9e6b82cdac
@ -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);
|
||||
|
||||
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user