13 lines
149 B
Go
Raw Permalink Normal View History

2024-03-12 15:23:08 +01:00
package tty_test
import (
"os"
"testing"
2025-02-25 16:37:15 +01:00
"git.urbach.dev/go/color/tty"
2024-03-12 15:23:08 +01:00
)
func TestIsTerminal(t *testing.T) {
tty.IsTerminal(os.Stdout.Fd())
}