Files
Nim/tests/stdlib/tterminal.nim
alaviss 825f358c8b terminal: fix fgColor/bgColor commands [backport] (#15554)
Since #8296, fgSetColor is no longer a global. These commands were
probably left out from the change as an oversight, so some tests have
been added to make sure this won't happen again.

(cherry picked from commit d1af9587b8)
2020-10-13 21:21:52 +02:00

9 lines
131 B
Nim

discard """
action: compile
"""
import terminal, colors
styledEcho fgColor, colRed, "Test"
styledEcho bgColor, colBlue, "Test"