Advanced RegExp assertions for Chai.js.
npm i --save-dev chai-match
var chai = require('chai');
chai.use(require('chai-match'));
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');