diff --git a/test/test_go.rb b/test/test_go.rb
index c21c94e0627bc3a28fdc245325c01274565f3740..ba229bf488bb7530659f05f3f87a8f177a1e36c7 100644
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -774,6 +774,16 @@ class TestGoFZF < TestBase
     tmux.until { |lines| lines.any? { |l| l.include? 'Invalid $TERM: xxx' } }
   end
 
+  def test_with_nth
+    writelines tempname, ['hello world ', 'byebye']
+    assert_equal 'hello world ', `cat #{tempname} | #{FZF} -f"^he hehe" -x -n 2.. --with-nth 2,1,1`.chomp
+  end
+
+  def test_with_nth_ansi
+    writelines tempname, ["\x1b[33mhello \x1b[34;1mworld\x1b[m ", 'byebye']
+    assert_equal 'hello world ', `cat #{tempname} | #{FZF} -f"^he hehe" -x -n 2.. --with-nth 2,1,1 --ansi`.chomp
+  end
+
 private
   def writelines path, lines
     File.unlink path while File.exists? path