Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions packages/cosmwasm-stargate/src/signingcosmwasmclient.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,8 @@ describe("SigningCosmWasmClient", () => {
client.disconnect();
});

it("works with Amino JSON signer (instantiatePermission set to one address)", async () => {
pending("Known issue: https://github.com/CosmWasm/wasmd/issues/1863");
pendingWithoutWasmd();
// Test disabled. Known issue: https://github.com/CosmWasm/wasmd/issues/1863
xit("works with Amino JSON signer (instantiatePermission set to one address)", async () => {
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(
wasmd.endpoint,
Expand All @@ -175,9 +174,8 @@ describe("SigningCosmWasmClient", () => {
client.disconnect();
});

it("works with Amino JSON signer (instantiatePermission set to everybody)", async () => {
pending("Known issue: https://github.com/CosmWasm/wasmd/issues/1863");
pendingWithoutWasmd();
// Test disabled. Known issue: https://github.com/CosmWasm/wasmd/issues/1863
xit("works with Amino JSON signer (instantiatePermission set to everybody)", async () => {
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(
wasmd.endpoint,
Expand Down
Loading