1
0
mirror of synced 2026-03-26 07:21:10 +00:00

feat(CLI): add smaller ascii art for clients with 74-84 columns

This commit is contained in:
Jason Dreyzehner
2018-03-12 18:56:21 -04:00
parent a8e0162846
commit 7e4ba94171
2 changed files with 17 additions and 1 deletions

View File

@@ -107,6 +107,12 @@ test('ascii art shows if stdout has 85+ columns', async t => {
t.regex(jumbo, new RegExp(snippet));
});
test('small ascii art shows if stdout has 74-84 columns', async t => {
const jumbo = getIntro(80);
const snippet = `| _| || | '_ \\/ -_|_-</ _| '_| | '_ \\ _|`;
t.regex(jumbo, new RegExp(snippet));
});
const mockErr = (code?: string | number) =>
((() => {
const err = new Error();