Thanks for putting this together, it's been really useful.
I think this part of the readme example:
it('returns server health', () => // implicit return again client.health().then(health => { expect(health).toEqual('up'); }));
Should in fact be:
it('returns server health', () => // implicit return again client.getHealth().then(health => { expect(health).toEqual('up'); }));
Hi,
Thanks for putting this together, it's been really useful.
I think this part of the readme example:
it('returns server health', () => // implicit return again client.health().then(health => { expect(health).toEqual('up'); }));
Should in fact be:
it('returns server health', () => // implicit return again client.getHealth().then(health => { expect(health).toEqual('up'); }));