Skip to content

Commit 59295dd

Browse files
committed
s/xit/describe.skip/
1 parent 376ee7b commit 59295dd

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
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/faucet-client/src/faucetclient.spec.ts

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

24-
(enabled ? it : xit)("can be used to credit a wallet", async () => {
24+
(enabled ? it : it.skip)("can be used to credit a wallet", async () => {
2525
const faucet = new FaucetClient(faucetUrl);
2626
await faucet.credit(defaultAddress, primaryToken);
2727
});
2828

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

34-
(enabled ? it : xit)("throws for invalid ticker", async () => {
34+
(enabled ? it : it.skip)("throws for invalid ticker", async () => {
3535
const faucet = new FaucetClient(faucetUrl);
3636
await faucet.credit(defaultAddress, "ETH").then(
3737
() => {
@@ -43,7 +43,7 @@ describe("FaucetClient", () => {
4343
);
4444
});
4545

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

4949
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, {

packages/math/src/integers.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("Integers", () => {
1313
expect(Uint32.fromBytes([0xff, 0xff, 0xff, 0xff]).toNumber()).toEqual(4294967295);
1414
});
1515

16-
(typeof Buffer !== "undefined" ? it : xit)("can be constructed from Buffer", () => {
16+
(typeof Buffer !== "undefined" ? it : it.skip)("can be constructed from Buffer", () => {
1717
expect(Uint32.fromBytes(Buffer.from([0, 0, 0, 0])).toNumber()).toEqual(0);
1818
expect(Uint32.fromBytes(Buffer.from([0, 0, 0, 1])).toNumber()).toEqual(1);
1919
expect(Uint32.fromBytes(Buffer.from([0, 0, 0, 42])).toNumber()).toEqual(42);

packages/socket/src/queueingstreamingsocket.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("QueueingStreamingSocket", () => {
1010
expect(socket).toBeTruthy();
1111
});
1212

13-
(enabled ? describe : xdescribe)("queueRequest", () => {
13+
(enabled ? describe : describe.skip)("queueRequest", () => {
1414
it("can queue and process requests with a connection", async () => {
1515
let done!: (() => void) & { fail: (e?: any) => void };
1616
const ret = new Promise<void>((resolve, reject) => {
@@ -71,7 +71,7 @@ describe("QueueingStreamingSocket", () => {
7171
});
7272
});
7373

74-
(enabled ? describe : xdescribe)("reconnect", () => {
74+
(enabled ? describe : describe.skip)("reconnect", () => {
7575
it("does not emit a completed event when disconnected", async () => {
7676
let done!: (() => void) & { fail: (e?: any) => void };
7777
const ret = new Promise<void>((resolve, reject) => {
@@ -146,7 +146,7 @@ describe("QueueingStreamingSocket", () => {
146146
});
147147
});
148148

149-
(enabled ? describe : xdescribe)("connectionStatus", () => {
149+
(enabled ? describe : describe.skip)("connectionStatus", () => {
150150
it("exposes connection status", async () => {
151151
let done!: (() => void) & { fail: (e?: any) => void };
152152
const ret = new Promise<void>((resolve, reject) => {

packages/socket/src/reconnectingsocket.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("ReconnectingSocket", () => {
1515
expect(socket).toBeTruthy();
1616
});
1717

18-
(enabled ? describe : xdescribe)("connect", () => {
18+
(enabled ? describe : describe.skip)("connect", () => {
1919
it("cannot connect after being connected", async () => {
2020
let done!: (() => void) & { fail: (e?: any) => void };
2121
const ret = new Promise<void>((resolve, reject) => {
@@ -39,7 +39,7 @@ describe("ReconnectingSocket", () => {
3939
});
4040
});
4141

42-
(enabled ? describe : xdescribe)("disconnect", () => {
42+
(enabled ? describe : describe.skip)("disconnect", () => {
4343
it("ends the events stream", async () => {
4444
let done!: (() => void) & { fail: (e?: any) => void };
4545
const ret = new Promise<void>((resolve, reject) => {
@@ -92,7 +92,7 @@ describe("ReconnectingSocket", () => {
9292
});
9393
});
9494

95-
(enabled ? describe : xdescribe)("reconnection", () => {
95+
(enabled ? describe : describe.skip)("reconnection", () => {
9696
const dirPath = "../../scripts/socketserver";
9797
const codePkillNoProcessesMatched = 1;
9898
const startServerCmd = `${dirPath}/start.sh`;

packages/socket/src/socketwrapper.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { SocketWrapper } from "./socketwrapper";
22

33
const enabled = !!globalThis.process?.env.SOCKETSERVER_ENABLED;
44

5-
(enabled ? describe : xdescribe)("SocketWrapper", () => {
5+
(enabled ? describe : describe.skip)("SocketWrapper", () => {
66
const socketServerUrlNonExisting = "ws://localhost:4443/websocket";
77
const socketServerUrl = "ws://localhost:4444/websocket";
88
const socketServerUrlSlow = "ws://localhost:4445/websocket";

0 commit comments

Comments
 (0)