File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,23 +48,23 @@ const ENTER = "\x0D";
4848const cliPath = ` ${ __dirname } /cli.js` ;
4949
5050describe (" cli-prompts-test" , () => {
51- it (" chooses first option" , async () => {
51+ it (" picks first option" , async () => {
5252 const { stdout } = await runTest (
5353 [cliPath],
5454 [ENTER ]
5555 );
5656 expect (stdout).toContain (" You chose First option" );
5757 });
5858
59- it (" chooses second option" , async () => {
59+ it (" picks second option" , async () => {
6060 const { stdout } = await runTest (
6161 [cliPath],
6262 [` ${ DOWN }${ ENTER } ` ]
6363 );
6464 expect (stdout).toContain (" You chose Second option" );
6565 });
6666
67- it (" chooses third option" , async () => {
67+ it (" picks third option" , async () => {
6868 const { stdout } = await runTest (
6969 [cliPath],
7070 [` ${ DOWN }${ DOWN }${ ENTER } ` ]
You can’t perform that action at this time.
0 commit comments