Search Docs
npm install -D @olton/easytest
package.json
{ "scripts": { "test": "easytest" } }
function hello() { return "Hello" } describe(`Common tests suite`, () => { it(`says hello`, () => { return expect(hello()).toBe("Hello") }) })
npm test