Last active
November 11, 2024 15:45
-
-
Save freedmand/e9457a1ddfd2f2c56ebbf7a186e43216 to your computer and use it in GitHub Desktop.
JavaScript unit testing in under 30 lines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() {} | |
test(name, fn) { | |
try { | |
fn.bind(this)(); | |
logStyle(PASS, `${name} PASSED`); | |
} | |
catch (e) { | |
logStyle(FAIL, `${name} FAILED: | |
${e}`); | |
} | |
} | |
assertEquals(arg1, arg2) { | |
if (arg1 != arg2) throw new Error(`Expected ${arg1} to equal ${arg2}`); | |
} | |
assert(condition) { | |
if (!condition) throw new Error(`Expected ${condition} to be truthy`); | |
} | |
} | |
/* | |
Usage: | |
const t = new Tester(); | |
t.test('testName', () => { | |
t.assertEquals('dog'.length, 3); // will pass | |
}); | |
t.test('anotherTestName', () => { | |
t.assert(false); // will fail | |
}); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good code