Skip to content

Commit b9e8d8b

Browse files
committed
s/xit/it.skip/
1 parent e8d077a commit b9e8d8b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+64
-64
lines changed

packages/amino/src/encoding.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ describe("encoding", () => {
8181
});
8282
});
8383

84-
xit("works for sr25519", () => {
84+
it.skip("works for sr25519", () => {
8585
// No test data available
8686
});
8787

packages/cosmwasm-stargate/src/cosmwasmclient.searchtx.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async function sendTokens(
9292
};
9393
}
9494

95-
(wasmdEnabled ? describe : xdescribe)("CosmWasmClient.getTx and .searchTx", () => {
95+
(wasmdEnabled ? describe : describe.skip)("CosmWasmClient.getTx and .searchTx", () => {
9696
const registry = new Registry();
9797

9898
let sendUnsuccessful: TestTxSend | undefined;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface HackatomInstance {
3838
readonly address: string;
3939
}
4040

41-
(wasmdEnabled ? describe : xdescribe)("CosmWasmClient", () => {
41+
(wasmdEnabled ? describe : describe.skip)("CosmWasmClient", () => {
4242
describe("connect", () => {
4343
it("can be constructed", async () => {
4444
const client = await CosmWasmClient.connect(wasmd.endpoint);

packages/cosmwasm-stargate/src/modules/wasm/queries.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async function executeContract(
123123
return client.signAndBroadcast(firstAddress, [theMsg], fee, memo);
124124
}
125125

126-
(wasmdEnabled ? describe : xdescribe)("WasmExtension", () => {
126+
(wasmdEnabled ? describe : describe.skip)("WasmExtension", () => {
127127
const hackatom = getHackatom();
128128
const hackatomConfigKey = toAscii("config");
129129
let hackatomCodeId: number | undefined;

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import {
5050
wasmdEnabled,
5151
} from "./testutils";
5252

53-
(wasmdEnabled ? describe : xdescribe)("SigningCosmWasmClient", () => {
53+
(wasmdEnabled ? describe : describe.skip)("SigningCosmWasmClient", () => {
5454
describe("connectWithSigner", () => {
5555
it("can be constructed", async () => {
5656
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
@@ -143,7 +143,7 @@ import {
143143
});
144144

145145
// Test disabled. Known issue: https://github.com/CosmWasm/wasmd/issues/1863
146-
xit("works with Amino JSON signer (instantiatePermission set to one address)", async () => {
146+
it.skip("works with Amino JSON signer (instantiatePermission set to one address)", async () => {
147147
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
148148
const client = await SigningCosmWasmClient.connectWithSigner(
149149
wasmd.endpoint,
@@ -170,7 +170,7 @@ import {
170170
});
171171

172172
// Test disabled. Known issue: https://github.com/CosmWasm/wasmd/issues/1863
173-
xit("works with Amino JSON signer (instantiatePermission set to everybody)", async () => {
173+
it.skip("works with Amino JSON signer (instantiatePermission set to everybody)", async () => {
174174
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
175175
const client = await SigningCosmWasmClient.connectWithSigner(
176176
wasmd.endpoint,

packages/faucet-client/src/faucetclient.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@ describe("FaucetClient", () => {
2121
expect(new FaucetClient("https://localhost/")).toBeTruthy();
2222
});
2323

24-
(enabled ? it : xit)("should throw error if the base URL does not start with http:// or https://", () => {
24+
(enabled ? it : it.skip)("should throw error if the base URL does not start with http:// or https://", () => {
2525
expect(() => new FaucetClient("ftp://example.com")).toThrowError(
2626
"Expected base url to start with http:// or https://",
2727
);
2828
});
2929

30-
(enabled ? it : xit)("can be used to credit a wallet", async () => {
30+
(enabled ? it : it.skip)("can be used to credit a wallet", async () => {
3131
const faucet = new FaucetClient(faucetUrl);
3232
await faucet.credit(defaultAddress, primaryToken);
3333
});
3434

35-
(enabled ? it : xit)("can be used to credit a wallet with a different token", async () => {
35+
(enabled ? it : it.skip)("can be used to credit a wallet with a different token", async () => {
3636
const faucet = new FaucetClient(faucetUrl);
3737
await faucet.credit(defaultAddress, secondaryToken);
3838
});
3939

40-
(enabled ? it : xit)("throws for invalid ticker", async () => {
40+
(enabled ? it : it.skip)("throws for invalid ticker", async () => {
4141
const faucet = new FaucetClient(faucetUrl);
4242
await expectAsync(faucet.credit(defaultAddress, "ETH")).toBeRejectedWithError(/token is not available/i);
4343
});
4444

45-
(enabled ? it : xit)("throws for invalid address", async () => {
45+
(enabled ? it : it.skip)("throws for invalid address", async () => {
4646
const faucet = new FaucetClient(faucetUrl);
4747

4848
for (const address of ["be5cc2cc05db2cdb4313c18306a5157291cfdcd1", "1234L"]) {

packages/faucet/src/api/webserver.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const faucetMnemonic =
1616

1717
const testingPort = 62222;
1818

19-
(simappEnabled ? describe : xdescribe)("Webserver", () => {
19+
(simappEnabled ? describe : describe.skip)("Webserver", () => {
2020
const pathBuilder = makeCosmoshubPath;
2121

2222
const rpcUrl = "http://localhost:26658";

packages/faucet/src/faucet.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function makeRandomAddress(): string {
1919
const faucetMnemonic =
2020
"economy stock theory fatal elder harbor betray wasp final emotion task crumble siren bottom lizard educate guess current outdoor pair theory focus wife stone";
2121

22-
(simappEnabled ? describe : xdescribe)("Faucet", () => {
22+
(simappEnabled ? describe : describe.skip)("Faucet", () => {
2323
const pathBuilder = makeCosmoshubPath;
2424

2525
const apiUrl = "http://localhost:26658";

packages/json-rpc/src/jsonrpcclient.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function makeSimpleMessagingConnection(
2828
};
2929
}
3030

31-
(typeof Worker !== "undefined" ? describe : xdescribe)("JsonRpcClient", () => {
31+
(typeof Worker !== "undefined" ? describe : describe.skip)("JsonRpcClient", () => {
3232
const dummyserviceKarmaUrl = "/base/dist/web/dummyservice.worker.js";
3333

3434
it("can be constructed with a Worker", () => {

packages/ledger-amino/src/ledgersigner.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function createTransport(): Promise<Transport> {
3838
return TransportClass.create(interactiveTimeout, interactiveTimeout);
3939
}
4040

41-
(ledgerEnabled ? describe : xdescribe)("LedgerSigner", () => {
41+
(ledgerEnabled ? describe : describe.skip)("LedgerSigner", () => {
4242
const defaultChainId = "testing";
4343
const defaultFee = calculateFee(100_000, "0.025ucosm");
4444
const defaultMemo = "Some memo";
@@ -147,7 +147,7 @@ async function createTransport(): Promise<Transport> {
147147
interactiveTimeout,
148148
);
149149

150-
(simappEnabled ? it : xit)(
150+
(simappEnabled ? it : it.skip)(
151151
"creates signature accepted by Stargate backend",
152152
async () => {
153153
const signer = new LedgerSigner(transport, {

0 commit comments

Comments
 (0)