UNPKG

motivational-cli

Version:

A simple CLI tool that prints a random motivational quote.

8 lines (5 loc) 211 B
const { execSync } = require("child_process"); test("CLI prints a motivational quote", () => { const output = execSync("node index.js").toString().trim(); expect(output.length).toBeGreaterThan(0); });