Nock VCR Recorder Mocha
About
A wrapper around nock-vcr-recorder to simplify creating vcr cassettes in mocha.
Install
npm install --save-dev nock-vcr-recorder-mocha
Usage
When you need to record cassettes you can either:
- Use
vcr.describe
instead ofdescribe
- Use
vcr.it
instead ofit
vcr.describe
will record a cassette before each test in that block. So
you can have multiple it
s and it will record any requests within them.
vcr.it
will record a cassette for one specific test.
They both support .skip
and .only
as mocha does.
var request = ;var assert = ;var vcr = ; ; vcrdescribe;
Configuration
List of available configuration options
Test specific configuration
vcr; vcr;
Global Configuration
A vcr.config
method is exposed to set default configuration on a global level.
This should be done before any of your tests have run. In mocha you can put this
in a helper file.
var vcr = ; ncr;
Authors
Versioning
This library follows Semantic Versioning
Want to help?
Please do! We are always looking to improve this library. If you have any ideas please open an issue or a pull requests and we'll work on getting them in.
Legal
Poetic Systems, Inc © 2014