spaxel/dashboard/node_modules/union/test/status-code-test.js
jedarden 03f765639b feat(feedback): enhance false positive explanations with diagnostic context
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-25 12:35:04 -04:00

31 lines
852 B
JavaScript

var assert = require('assert'),
request = require('request'),
vows = require('vows'),
union = require('../');
vows.describe('union/status-code').addBatch({
'When using `union`': {
'with a server setting `res.statusCode`': {
topic: function () {
var server = union.createServer({
before: [
function (req, res) {
res.statusCode = 404;
res.end();
}
]
});
server.listen(9091, this.callback);
},
'and sending a request': {
topic: function () {
request('http://localhost:9091/', this.callback);
},
'it should have proper `statusCode` set': function (err, res, body) {
assert.isTrue(!err);
assert.equal(res.statusCode, 404);
}
}
}
}
}).export(module);