Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

Jody

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Jody

Descriptive BDD Framework for nodejs

  • 0.2.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Jody

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

To Install

npm Jody

To Use

run Jody <file_name>

or Create specs in ./spec and then: run Jody

Usage

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);
  });

Async

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();
    }));
  });

Http

See examples/http_spec.js

Before All and After All Specs

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.

Examples

See ./examples folder for examples on use

Feedback

For suggestions, help or feedback go to https://convore.com/jody/

Keywords

FAQs

Package last updated on 09 Feb 2012

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc