File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ describe("asciiArt", () => {
3434 const result = getDisplayableAsciiArt ( ) ;
3535
3636 expect ( result ) . toContain ( "██████╗" ) ;
37- expect ( result ) . toContain ( "(beta)" ) ;
37+
3838 expect ( result ) . not . toBe ( CONTINUE_ASCII_ART ) ;
3939 // Should be much shorter than the full ASCII art
4040 expect ( result . length ) . toBeLessThan ( CONTINUE_ASCII_ART . length / 2 ) ;
@@ -47,7 +47,7 @@ describe("asciiArt", () => {
4747 const result = getDisplayableAsciiArt ( ) ;
4848
4949 expect ( result ) . toContain ( "██████╗" ) ;
50- expect ( result ) . toContain ( "(beta)" ) ;
50+
5151 expect ( result ) . not . toBe ( CONTINUE_ASCII_ART ) ;
5252 } ) ;
5353
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ ${mind.multiline(` ██████╗ ██████╗ ███╗
1212 ██║ ██║ ██║██║╚██╗██║ ██║ ██║██║╚██╗██║██║ ██║██╔══╝
1313 ╚██████╗╚██████╔╝██║ ╚████║ ██║ ██║██║ ╚████║╚██████╔╝███████╗
1414 ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝` ) }
15- ${ d ( "v" + getVersion ( ) + " (beta)" ) } ` ;
15+ ${ d ( "v" + getVersion ( ) ) } ` ;
1616
1717// ASCII art for just "CN" (first two letters)
1818const CN_ASCII_ART = `
@@ -22,7 +22,7 @@ ${mind.multiline(` ██████╗███╗ ██╗
2222 ██║ ██║╚██╗██║
2323 ╚██████╗██║ ╚████║
2424 ╚═════╝╚═╝ ╚═══╝` ) }
25- ${ d ( "v" + getVersion ( ) + " (beta)" ) } ` ;
25+ ${ d ( "v" + getVersion ( ) ) } ` ;
2626
2727// Minimum terminal width required to display ASCII art properly
2828const MIN_WIDTH_FOR_ASCII_ART = 75 ;
You can’t perform that action at this time.
0 commit comments