Skip to content

Instantly share code, notes, and snippets.

View kabootit's full-sized avatar

Kabootit kabootit

  • Washington D.C.
View GitHub Profile
@kabootit
kabootit / tester.js
Last active November 5, 2018 16:30 — forked from freedmand/tester.js
JavaScript unit testing in under 30 lines
const PASS = ['32']; // green
const FAIL = ['31', '1']; // red, bold
function logStyle(ansiEscapeCodes, text) {
console.log(`\x1b[${ansiEscapeCodes.join(';')}m${text}\x1b[0m`);
}
class Tester {
constructor() {}