jasmine-async

0.0.1 • Public • Published
Allows jasmine.async to be used in Node.js as an NPM module.

Install:

	npm install jasmine.async

Usage:

var AsyncSpec = require('jasmine.async')(jasmine);

describe('After one second', function() {
	var async =  new AsyncSpec(this);
	async.it('it should check that 1 equals 1.', function(done) {
		setTimeout(function() {
			expect(1).toEqual(1);
			done();
		}, 1000);
	});
});

Once included just run your Jasmine tests as you always did. 

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i jasmine-async

      Weekly Downloads

      11

      Version

      0.0.1

      License

      none

      Last publish

      Collaborators

      • simonmcmanus