From cf2ab9161b94949c2cdd71468b11454305d2c4f4 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 9 Jun 2020 11:29:45 +0100 Subject: [PATCH] Add wasmd check to faucet tests --- packages/faucet/src/faucet.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/faucet/src/faucet.spec.ts b/packages/faucet/src/faucet.spec.ts index 1438b89285..9c6e8f6c89 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"]);