UNPKG
motivational-cli
Version:
latest (1.0.0)
1.0.0
A simple CLI tool that prints a random motivational quote.
motivational-cli
/
index.test.js
8 lines
(5 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
{ execSync } =
require
(
"child_process"
);
test
(
"CLI prints a motivational quote"
,
() =>
{
const
output =
execSync
(
"node index.js"
).
toString
().
trim
();
expect
(output.
length
).
toBeGreaterThan
(
0
); });