Test: change a describe to it (#959)

This commit is contained in:
joehecn 2017-04-17 12:02:32 +08:00 committed by jongleberry
parent cb12aa8ae5
commit 19fc4194b7

View file

@ -11,7 +11,7 @@ describe('req.type', () => {
req.type.should.equal('text/html');
});
describe('with no host present', () => {
it('with no host present', () => {
const req = request();
assert('' === req.type);
});