chai-match

1.1.1 • Public • Published

Chai Match

Advanced RegExp assertions for Chai.js.

Installation

npm i --save-dev chai-match
var chai = require('chai');
chai.use(require('chai-match'));

API

.capture(n)

Sets the assertion object to a previous match's capture.

expect('some thing to test').to.match(/some (\w+) to test/).and.capture(0).equals('thing');
'Here in London'.should.match(/(here|there) in (\w+)/i).and.capture(1).equals('London');

Package Sidebar

Install

npm i chai-match

Weekly Downloads

14,841

Version

1.1.1

License

MIT

Last publish

Collaborators

  • johngeorgewright