4b1a1da652
closes #553 Update test: application -> use() should throw if not a function Fix lint Use arrow function Refactor test using arrow function Remove non mandatory brackets fix for merge Fix: missing refactor after merge Use arrow function for old generator
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
|
|
'use strict';
|
|
|
|
const context = require('../helpers/context');
|
|
|
|
describe('ctx.remove(name)', () => {
|
|
it('should remove a field', () => {
|
|
const ctx = context();
|
|
ctx.set('x-foo', 'bar');
|
|
ctx.remove('x-foo');
|
|
ctx.response.header.should.eql({});
|
|
});
|
|
});
|