mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-06 03:53:59 +02:00
how about using pty
This commit is contained in:
parent
b0bd752180
commit
ee7b634dce
@ -3,6 +3,7 @@ package gui
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -10,6 +11,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/creack/pty"
|
||||||
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
|
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
|
||||||
"github.com/jesseduffield/lazygit/pkg/secureexec"
|
"github.com/jesseduffield/lazygit/pkg/secureexec"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
@ -315,8 +317,14 @@ func runLazygit(t *testing.T, testPath string, rootDir string, configDir string,
|
|||||||
"TERM=xterm",
|
"TERM=xterm",
|
||||||
)
|
)
|
||||||
|
|
||||||
err = cmd.Run()
|
f, err := pty.StartWithSize(cmd, &pty.Winsize{Rows: 100, Cols: 100})
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
_, _ = io.Copy(ioutil.Discard, f)
|
||||||
|
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
_ = f.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func prepareIntegrationTestDir(actualDir string) {
|
func prepareIntegrationTestDir(actualDir string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user