feat(cli): custom witty message (#7641)

This commit is contained in:
JAYADITYA
2025-09-03 22:09:04 +05:30
committed by GitHub
parent 50b5c4303e
commit de53b30e69
7 changed files with 98 additions and 21 deletions
+2 -2
View File
@@ -1055,7 +1055,7 @@ describe('App UI', () => {
);
currentUnmount = unmount;
expect(lastFrame()).toContain("I'm Feeling Lucky (esc to cancel");
expect(lastFrame()).toContain('(esc to cancel');
});
it('should display a message if NO_COLOR is set', async () => {
@@ -1070,7 +1070,7 @@ describe('App UI', () => {
);
currentUnmount = unmount;
expect(lastFrame()).toContain("I'm Feeling Lucky (esc to cancel");
expect(lastFrame()).toContain('(esc to cancel');
expect(lastFrame()).not.toContain('Select Theme');
});
});