
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@hellomd/nock-vcr-recorder
Advanced tools
A test framework agnostic vcr implementation that uses nock.
A test framework agnostic vcr implementation that uses nock. Can be used in isolation or test specific libraries can be written around it.
npm install --save-dev nock-vcr-recorder
Use vcr.useCassette
and pass in a callback with the test to run. All http
requests will be recorded using nock and stored in a cassettes directory for
playback on later test runs. It expects the callback to return a promise for
asyncronous actions and it returns a promise that resolves when it's finished.
Example using mocha:
var RSVP = require('rsvp');
var request = RSVP.denodeify(require('request'));
var assert = require('assert');
var vcr = require('nock-vcr-recorder');
describe('standard test', function() {
it('caches request', function() {
return vcr.useCassette('normal test - works', function() {
return request('http://localhost:4000/users').then(function() {
assert(true, 'request works');
});
});
});
});
// Usage with test specific options
//
// This test will not record the request to localhost:4000 and it will not use
// any saved fixtures
describe('normal test', function() {
it('works', function(done) {
return vcr.useCassette('normal test - works', {
excludeScope: 'localhost:4000'
mode: 'all'
}, function() {
return request('http://localhost:4000/users').then(function() {
assert(true, 'request works');
});
});
});
});
You can also call vcr.nockReset()
if you need to programmatically remove all mocks.
Defaults:
{
// Don't record any requests to this scope
// It can be an array or string
excludeScope: ['localhost', '127.0.0.1', '0.0.0.0'],
// Re-record and overwrite your current fixtures
// Possible values: 'all'
mode: undefined,
// Write recorded fixtures when the test fails. We don't do this by default
writeOnFailure: false
}
To overide these you can call vcr.config
with an object to
override them for ALL tests.
You also are able to pass in test specific options as the second parameter to
vcr.useCassette()
. See the "Usage" section above for an example.
This library follows Semantic Versioning
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.
Poetic Systems, Inc © 2014
FAQs
A test framework agnostic vcr implementation that uses nock.
The npm package @hellomd/nock-vcr-recorder receives a total of 0 weekly downloads. As such, @hellomd/nock-vcr-recorder popularity was classified as not popular.
We found that @hellomd/nock-vcr-recorder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.