diff --git a/packages/faucet/src/faucet.spec.ts b/packages/faucet/src/faucet.spec.ts index 1438b892..9c6e8f6c 100644 --- a/packages/faucet/src/faucet.spec.ts +++ b/packages/faucet/src/faucet.spec.ts @@ -46,13 +46,15 @@ describe("Faucet", () => { }); describe("availableTokens", () => { - it("is empty when no tokens are configures", async () => { + it("is empty when no tokens are configured", async () => { + pendingWithoutWasmd(); const faucet = await Faucet.make(httpUrl, defaultAddressPrefix, { bankTokens: [] }, faucetMnemonic, 3); const tickers = await faucet.availableTokens(); expect(tickers).toEqual([]); }); - it("is empty when no tokens are configures", async () => { + it("is empty when no tokens are configured", async () => { + pendingWithoutWasmd(); const faucet = await Faucet.make(httpUrl, defaultAddressPrefix, defaultTokenConfig, faucetMnemonic, 3); const tickers = await faucet.availableTokens(); expect(tickers).toEqual(["COSM", "STAKE"]);