remove bad console logs

This commit is contained in:
carson 2020-06-17 14:58:38 -07:00
parent f79d978c09
commit 6083a2ea74
2 changed files with 0 additions and 2 deletions

View File

@ -50,7 +50,6 @@ describe("hx-ws attribute", function() {
var div = make('<div hx-ws="connect wss:/foo"><div hx-ws="send" id="d1">div1</div></div>');
byId("d1").click();
var lastSent = this.socket.getLastSent();
console.log(lastSent)
var data = JSON.parse(lastSent);
data.HEADERS["HX-Request"].should.equal("true");
})

View File

@ -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("<div>", 30) + stringRepeat("<div><div><span><button hx-get='/test'> Test Get Button </button></span></div></div>\n", 1000) + stringRepeat("</div>", 30);
console.log(str);
var start = performance.now();
var stuff = make(str);
var end = performance.now();