Ken Blair
Results
2
comments of
Ken Blair
I'm somewhat new to Chai but it looks like an anti-pattern to me. It seems to me the pattern you're following is creating a _new_ assertion with the _same_ object....
This is reasonably easy to do with Express already. ``` var express = require('express')(); exports.start = function () { return express.listen(0).address().port; } var chakram = require('chakram'); var server = require('./server');...