
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.
A basic bdd framework to work with node so that I can learn a bit of javascript and node. Adds a method on to all objects to test using should(). It can test callbacks and events
npm Jody
run Jody <file_name>
or Create specs in ./spec and then: run Jody
var describe = require('Jody').describe;
describe("New set of specs").
beforeEach(function () {
}).
it("Should test something", function() {
var i = 0;
i += 1;
i.should().beEqual(1);
});
Add the function *async* to each callback that you want to test again. This will allow for Jody to determine if the test was successful
describe("Async spec").
it("Should only assert at the end", function (atEnd) {
asyncTest(async(function(val1,val2){
val1.should().beTrue();
val2.should().beFalse();
}));
});
See examples/http_spec.js
For functional testing the following can be used for a beforeAll and after All.
require('Jody').configure.beforeAll(function (done) {
// some setup before specs
done();
});
require('Jody').configure.afterAll(function (done) {
// clean up after all tests run
done();
});
A spec_helper.js
file in your specs directory will be executed before all specs. A good place to put your before all and after all.
See ./examples folder for examples on use
For suggestions, help or feedback go to https://convore.com/jody/
FAQs
Descriptive BDD Framework for nodejs
We found that Jody 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.