Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 1x 1x 1x 1x 1x 1x 1x 1x | const { expect } = require(`chai`); const helper = require(`../helpers`); it(`Should generate proper headers using _getPrivateHeaders`, function() { const client = helper.getClient(); const params = { prop: 1 }; const result = client._getPrivateHeaders(params); expect(result).to.have.property( `Content-Type`, `application/x-www-form-urlencoded` ); expect(result).to.have.property(`HMAC`); expect(result.HMAC.length).to.equal(128); }); |