All files / tests/segment auth.js

100% Statements 9/9
100% Branches 0/0
100% Functions 1/1
100% Lines 9/9

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 151x 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);
});