1.1.3 • Published 3 years ago
simpltest v1.1.3
simpltest
A simple, quick and easy way to test your code.
Installation
npm i simpltestQuick Start
const st = require("simpltest")
st.createTest(Greeter("Carl"), "Greeter")
.shouldBe(["Hello Carl!", "Whats up, Carl?"])
function Greeter(name) {
return [`Hello ${name}!`, `Whats up, ${name}?`][Math.floor(Math.random()*2)]
}What's new
patch v1.1.3:
- Fixed bug in readme.
patch v1.1.2:
- Fixed bug where "all tests passed" is sent multiple times.
v1.1.0:
- Added JSDOC descriptions.
- Added
abortErrorfor if you don't want an error thrown when not all tests pass.