You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thanks for contributing this node module. I've found it pretty darned helpful and quick to get up and running with!
I believe that the example in your README.md is out of date. To wit:
frisby.create('GET user johndoe').globalSetup({// globalSetup is for ALL requestsrequest: {headers: {'X-Auth-Token': 'fa8426a0-8eaf-4d22-8e13-7c1b16a9370c'}}}).get(URL+'/users/3.json')
...should be...
frisby.globalSetup({// globalSetup is for ALL requestsrequest: {headers: {'X-Auth-Token': 'fa8426a0-8eaf-4d22-8e13-7c1b16a9370c'}}});frisby.create(...)
Cheers,
Felix
The text was updated successfully, but these errors were encountered:
Hi vlucas,
First off, thanks for contributing this node module. I've found it pretty darned helpful and quick to get up and running with!
I believe that the example in your README.md is out of date. To wit:
...should be...
Cheers,
Felix
The text was updated successfully, but these errors were encountered: