New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

co-test

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

co-test

An wapper that enables generators to be used in unit test, inspired by co

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

co-test is a wapper that enables generators to be used in unit test, inspired by co.

Installation

$ npm install co-test

Usage

co-test lets you write your unit test by using generator functions. Like this:

/*
  global describe it
 */
'use strict'
require('should')
var wrap = require('co-test');
describe('Test Module', function () {
  it('Test Case', wrap(function * (done) {
    let result = yield Promise.resolve(1)
    result.should.be.equal(1)
    done()
  }))
})

When Error occur, co-test can catch it and show you

/*
  global describe it
 */
'use strict'
require('should')
var wrap = require('co-test');
describe('Test Module', function () {
  it('Test Case', wrap(function * (done) {
    //Error Occur When you run this unit test
    let result = yield Promise.reject(1)
    result.should.be.equal(1)
    done()
  }))
})

Keywords

FAQs

Package last updated on 19 Aug 2016

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