From 8d880193a576d4fbbb111d0de5c06e474b3e60e6 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 31 Jul 2022 01:40:35 -0400 Subject: [PATCH] linting --- test/index.spec.js | 17 +++++++++-------- test/runner.js | 4 ++-- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/test/index.spec.js b/test/index.spec.js index 6bded03..f3a2798 100644 --- a/test/index.spec.js +++ b/test/index.spec.js @@ -2,12 +2,12 @@ import test from "../src/testit.js"; export default test.it({ "'like' should do truthy evaluation via ==": function () { - test.assert(1 == '1'); + test.assert(1 == "1"); test.assert(1); }, "'equal' should do === evaluation exist": function () { test.assert(1 === 1); - test.assert('hello' === 'hello'); + test.assert("hello" === "hello"); }, "you should be able to 'pass' a test": function () { test.assert(1); @@ -16,20 +16,21 @@ export default test.it({ try { test.assert(0); } catch (e) { + // correct } }, "you should be able to test if something 'exists'": function () { test.assert({}); - test.assert(typeof ({}) === 'object'); + test.assert(typeof ({}) === "object"); }, "should be able to check types": function () { test.assert(Array.isArray([])); - test.assert(typeof (123) === 'number'); + test.assert(typeof (123) === "number"); - test.assert(typeof ({}) === 'object'); - test.assert(typeof (true) === 'boolean'); - test.assert(typeof (false) === 'boolean'); - test.assert(typeof (undefined) === 'undefined'); + test.assert(typeof ({}) === "object"); + test.assert(typeof (true) === "boolean"); + test.assert(typeof (false) === "boolean"); + test.assert(typeof (undefined) === "undefined"); } }); diff --git a/test/runner.js b/test/runner.js index a251b5d..5269edd 100644 --- a/test/runner.js +++ b/test/runner.js @@ -10,6 +10,6 @@ spec.run(false, function (r) { r.pass.forEach((p) => errors.push(`
${p}`)); r.fail.forEach((f) => errors.push(`
${f}`)); - document.querySelector('#errors').innerHTML = errors; - document.querySelector('#summary').innerHTML = `| tests: ${r.pass.length + r.fail.length} | pass: ${r.pass.length} | fail: ${r.fail.length} |`; + document.querySelector("#errors").innerHTML = errors; + document.querySelector("#summary").innerHTML = `| tests: ${r.pass.length + r.fail.length} | pass: ${r.pass.length} | fail: ${r.fail.length} |`; });