Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should add the `Content-Type` header', () => {
const m = H.contentType(H.MediaType.applicationXML)
const c = new MockConnection(new MockRequest())
return assertSuccess(m, c, undefined, [
{ type: 'setHeader', name: 'Content-Type', value: 'application/xml' },
])
})
})