Skip to content

Commit af85b5e

Browse files
authored
Merge pull request #1838 from dynst/jasmine-xit
cosmwasm-stargate: xit() two disabled tests
2 parents cf577fd + 52ad4b0 commit af85b5e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

packages/cosmwasm-stargate/src/signingcosmwasmclient.spec.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,8 @@ describe("SigningCosmWasmClient", () => {
147147
client.disconnect();
148148
});
149149

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

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

0 commit comments

Comments
 (0)