import { expect } from "chai"; import { ClientLibrary } from "../../src"; let clientLibrary: ClientLibrary; let web3Provider: any; before(function() { clientLibrary = new ClientLibrary("https://psyched-hook-280010.oa.r.appspot.com"); }); describe("Commit tests - Integration", function() { xit("Commit to buy a voucher from the given set", async () => { const voucherSetId: string = "TestVoucherSetID"; const jwt: string = "TestJWTToken"; const commitStatus: string = clientLibrary.commitToBuy(web3Provider, voucherSetId, jwt); // TODO implement provider & other params expect(commitStatus).to.eql(""); }); });