New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

nuritest

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuritest

[supertest](https://github.com/visionmedia/supertest)를 기반으로 테스트 request 입니다. - 함수화를 하여 좀 더 간편한 사용 가능 - (주)누리고에 최적화된 Error Catch

latest
Source
npmnpm
Version
2.0.2
Version published
Weekly downloads
3
50%
Maintainers
1
Weekly downloads
 
Created
Source

nuritest

supertest를 기반으로 테스트 request 입니다.

  • 함수화를 하여 좀 더 간편한 사용 가능
  • (주)누리고에 최적화된 Error Catch

Installation

$ npm install nuritest

Usage

기존의 supertest

it('Title', done => {
  request(app)
    .get('path')
    .expect(statusCode)
    .end((res, err) => {
      //Too
      done()
    })
})

(주)누리고에 최적화된 nuritest

it('apiSecret을 가져오는 기능 테스트', done => {
  nuriTest(app, 'method', 'path', statusCode,
    (res, err) => {
      //Todo
    }, done)
})

⭐THANK YOU FOR SUPERTEST

FAQs

Package last updated on 18 Dec 2017

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