strapi/test/response/remove.js

13 lines
281 B
JavaScript
Raw Normal View History

2015-10-01 00:30:16 +02:00
'use strict';
const context = require('../helpers/context');
describe('ctx.remove(name)', function () {
it('should remove a field', function () {
const ctx = context();
ctx.set('x-foo', 'bar');
ctx.remove('x-foo');
ctx.response.header.should.eql({});
});
});