summaryrefslogtreecommitdiffstatshomepage
path: root/test/attributes/hx-push-url.js
diff options
context:
space:
mode:
authorcarson <carson@leaddyno.com>2020-10-17 13:21:15 -0600
committercarson <carson@leaddyno.com>2020-10-17 13:21:15 -0600
commit165586b77752a2873cec67bc9561a471ca70e1f6 (patch)
tree6a05379705ce6e47bb7331dfcf56245f93828383 /test/attributes/hx-push-url.js
parent6c8c124c420b90b4c0527557af3a9466d74a0b53 (diff)
downloadhtmx-165586b77752a2873cec67bc9561a471ca70e1f6.tar.gz
htmx-165586b77752a2873cec67bc9561a471ca70e1f6.zip
docs and tests for trigger filters
Diffstat (limited to 'test/attributes/hx-push-url.js')
-rw-r--r--test/attributes/hx-push-url.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/attributes/hx-push-url.js b/test/attributes/hx-push-url.js
index 604a6d3c..80f5f366 100644
--- a/test/attributes/hx-push-url.js
+++ b/test/attributes/hx-push-url.js
@@ -37,7 +37,6 @@ describe("hx-push-url attribute", function() {
this.server.respond();
getWorkArea().textContent.should.equal("second")
var cache = JSON.parse(localStorage.getItem(HTMX_HISTORY_CACHE_NAME));
- console.log(cache);
cache.length.should.equal(2);
cache[1].url.should.equal("/abc123");
});
@@ -193,7 +192,6 @@ describe("hx-push-url attribute", function() {
for (var i = 0; i < 20; i++) {
bigContent += bigContent;
}
- console.log(bigContent.length);
try {
localStorage.removeItem("htmx-history-cache");
htmx._("saveToHistoryCache")("/dummy", bigContent, "Foo", 0);