mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-08 18:58:47 -06:00
Integration tests: Output yarn to stdout/stderr (#3115)
This commit is contained in:
@@ -127,7 +127,10 @@ func (s *IntegrationSuite) NodeOutput() string {
|
||||
}
|
||||
|
||||
func (s *IntegrationSuite) npmInstall() {
|
||||
err := exec.Command("yarn").Run()
|
||||
cmd := exec.Command("yarn")
|
||||
cmd.Stdout = os.Stdout
|
||||
cmd.Stderr = os.Stderr
|
||||
err := cmd.Run()
|
||||
s.NoError(err)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user