8000 GitHub - coditva/chai-postman: Chai plugin to assert on Postman Collections
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

coditva/chai-postman

 
 

Repository files navigation

chai-postman

Greenkeeper badge Chai plugin to assert on Postman Collections

Install

$ npm install chai-postman --save-dev

Usage

In order to use this plugin, ensure that you have postman-collection and lodash installed.

var _ = require('lodash'),
    chai = require('chai'),
    sdk = require('postman-collection'),
    chaiPostman = require('chai-postman'),

    req,
    res,
    expect = chai.expect;

chai.use(chaiPostman(sdk, _));

// create postman-collection request and response instances
req = new sdk.Request({
    header: [{
        key: 'Content-Type',
        value: 'application/json; charset=utf-8'
    }]
});
res = new sdk.Response({ code: 200 });

// request assertions
expect(req).to.be.a.postmanRequest;
expect(req).to.have.header('Content-Type'); // an optional second argument can also be provided to assert value

// response assertions
expect(res).to.be.a.postmanResponse;
expect(res).to.have.statusCode(200);

Check the tests for a complete reference.

Compatibility

chai-postman postman-collection lodash
v0.1.0 v3.x v4.17.4
v1.0.0 v3.x v4.17.4

About

Chai plugin to assert on Postman Collections

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%
0