We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613562a commit b1a53bcCopy full SHA for b1a53bc
test.js
@@ -43,7 +43,7 @@ test('[] used in name', 1, function () {
43
equal($.cookie('c[999]'), 'foo', 'should return value');
44
});
45
46
-test('embedded equals', 1, function() {
+test('embedded equals', 1, function () {
47
$.cookie('c', 'foo=bar', { raw: true });
48
equal($.cookie('c', { raw: true }), 'foo=bar', 'should include the entire value');
49
@@ -67,12 +67,12 @@ test('String object', 1, function () {
67
equal($.cookie('c'), 'v', 'should write value');
68
69
70
-test('value "[object Object]"', 1, function() {
+test('value "[object Object]"', 1, function () {
71
$.cookie('c', '[object Object]');
72
equal($.cookie('c'), '[object Object]', 'should write value');
73
74
75
-test('number', 1, function() {
+test('number', 1, function () {
76
$.cookie('c', 1234);
77
equal($.cookie('c'), '1234', 'should write value');
78
0 commit comments