Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit ccf0656

Browse files
committed
add logging for cookie test
1 parent ad40326 commit ccf0656

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/cookie.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ describe('cookie', function() {
3434

3535
describe('#set', function() {
3636
it('should set a cookie', function() {
37+
console.log('setting cookie. document.cookie is', document.cookie);
3738
cookie.set('x', { a: 'b' });
39+
console.log('cookie set. document.cookie is', document.cookie);
3840
assert.deepEqual(cookie.get('x'), { a: 'b' });
3941
});
4042
});

0 commit comments

Comments
 (0)