diff --git a/test/attributes/hx-ws.js b/test/attributes/hx-ws.js
index 84cbcf43..3dc1c327 100644
--- a/test/attributes/hx-ws.js
+++ b/test/attributes/hx-ws.js
@@ -50,7 +50,6 @@ describe("hx-ws attribute", function() {
var div = make('
');
byId("d1").click();
var lastSent = this.socket.getLastSent();
- console.log(lastSent)
var data = JSON.parse(lastSent);
data.HEADERS["HX-Request"].should.equal("true");
})
diff --git a/test/core/perf.js b/test/core/perf.js
index c0bfac58..6fdbbbea 100644
--- a/test/core/perf.js
+++ b/test/core/perf.js
@@ -35,7 +35,6 @@ describe("Core htmx perf Tests", function() {
// create an entry with a large content string (256k) and see how fast we can write and read it
// to local storage as a single entry
var str = stringRepeat("", 30) + stringRepeat("
\n", 1000) + stringRepeat("
", 30);
- console.log(str);
var start = performance.now();
var stuff = make(str);
var end = performance.now();