Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d7d21 commit d8a5830Copy full SHA for d8a5830
cli/cliui/prompt_test.go
@@ -6,6 +6,7 @@ import (
6
"io"
7
"os"
8
"os/exec"
9
+ "runtime"
10
"testing"
11
12
"github.com/stretchr/testify/assert"
@@ -229,9 +230,9 @@ func TestPasswordTerminalState(t *testing.T) {
229
230
passwordHelper()
231
return
232
}
- // if runtime.GOOS == "windows" {
233
- // t.Skip("Skipping on windows. PTY doesn't read ptty.Write correctly.")
234
- // }
+ if runtime.GOOS == "windows" {
+ t.Skip("Skipping on windows. PTY doesn't read ptty.Write correctly.")
235
+ }
236
t.Parallel()
237
238
ptty := ptytest.New(t)
0 commit comments