summaryrefslogtreecommitdiffstatshomepage
path: root/test/attributes/hx-delete.js
diff options
context:
space:
mode:
authorcarson <carson@leaddyno.com>2020-05-23 04:52:52 -0700
committercarson <carson@leaddyno.com>2020-05-23 04:52:52 -0700
commitba6d38e9dd0f61cca373e2e660c99b5e23f73a6b (patch)
treeb90aebcc597706a3e5cb4509924c13b1e5ad3d0e /test/attributes/hx-delete.js
parent8b6aec296013588e7acc64eab5878f1cef818f1b (diff)
downloadhtmx-ba6d38e9dd0f61cca373e2e660c99b5e23f73a6b.tar.gz
htmx-ba6d38e9dd0f61cca373e2e660c99b5e23f73a6b.zip
Fix https://github.com/bigskysoftware/htmx/issues/19
clean up uses of getRawAttribute() and add a `data-*` test for all attribute tests.
Diffstat (limited to 'test/attributes/hx-delete.js')
-rw-r--r--test/attributes/hx-delete.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/attributes/hx-delete.js b/test/attributes/hx-delete.js
index 42892e31..3a166aaf 100644
--- a/test/attributes/hx-delete.js
+++ b/test/attributes/hx-delete.js
@@ -20,4 +20,17 @@ describe("hx-delete attribute", function(){
this.server.respond();
btn.innerHTML.should.equal("Deleted!");
});
+
+ it('issues a DELETE request with proper headers w/ data-* prefix', function()
+ {
+ this.server.respondWith("DELETE", "/test", function(xhr){
+ xhr.requestHeaders['X-HTTP-Method-Override'].should.equal('DELETE');
+ xhr.respond(200, {}, "Deleted!");
+ });
+
+ var btn = make('<button data-hx-delete="/test">Click Me!</button>')
+ btn.click();
+ this.server.respond();
+ btn.innerHTML.should.equal("Deleted!");
+ });
})