add some support for tickets, introspection method, minor fixes
[squeep-indieauth-helper] / test / lib / common.js
index fe0240718bf8192f8e3761219ef33fd665e8d544..7ebc91b45b6cf81c47306b48a7cfc62c5ceffe78 100644 (file)
@@ -120,4 +120,14 @@ describe('common', function () {
     });
   }); // properURLComponentName
 
+  describe('formData', function () {
+    it('covers', function () {
+      const result = common.formData({
+        key: 'value',
+        foo: 'bar',
+      });
+      assert.strictEqual(result, 'key=value&foo=bar');
+    });
+  }); // formData
+
 }); // common
\ No newline at end of file