jasmine-async

Modified http://github.com/derickbailey/jasmine.async to work with node.js/ node-jasmine.

1 个版本
安装
npm install jasmine-async
yarn add jasmine-async
pnpm add jasmine-async
bun add jasmine-async
README
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. 
版本列表
0.0.1 2013-06-03