1 package formatters 2 3 import ( 4 "testing" 5 6 assert "github.com/alecthomas/assert/v2" 7 "github.com/alecthomas/chroma/v2" 8 ) 9 10 func TestClosestColour(t *testing.T) { 11 actual := findClosest(ttyTables[256], chroma.MustParseColour("#e06c75")) 12 assert.Equal(t, chroma.MustParseColour("#d75f87"), actual) 13 } 14