You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.equal(request.acquiaHttpHmac.nonce,'11bdbac4-1111-4111-9111-111111111111','sign() records a nonce to the XHR object.');
59
59
assert.equal(request.acquiaHttpHmac.timestamp,1000000,'sign() records a timestamp to the XHR object.');
60
60
assert.equal(request.getRequestHeader('X-Authorization-Timestamp'),1000000,'sign() sets "X-Authorization-Timestamp" request header to the XHR object.');
@@ -128,7 +128,7 @@ QUnit.test('Test sign(), asserts GET pass with a promise-based request object.',
assert.equal(request.acquiaHttpHmac.nonce,'11bdbac4-1111-4111-9111-111111111111','sign() records a nonce to the jqXHR object.');
133
133
assert.equal(request.acquiaHttpHmac.timestamp,1000000,'sign() records a timestamp to the jqXHR object.');
134
134
assert.deepEqual(request.headers,{Authorization: authorization,'X-Authorization-Timestamp': '1000000'},'sign() sets "X-Authorization-Timestamp" and "Authorization" request header to the jqXHR object.');
assert.equal(request.acquiaHttpHmac.nonce,'11bdbac4-1111-4111-9111-111111111111','sign() records a nonce to the XHR object.');
165
165
assert.equal(request.acquiaHttpHmac.timestamp,1000000,'sign() records a timestamp to the XHR object.');
166
166
assert.equal(request.getRequestHeader('X-Authorization-Timestamp'),1000000,'sign() sets "X-Authorization-Timestamp" request header to the XHR object.');
0 commit comments