Integration tests: Output yarn to stdout/stderr (#3115)

This commit is contained in:
Erik Arvidsson
2017-01-25 18:02:13 -08:00
committed by GitHub
parent 6a800f6518
commit a1df010524

View File

@@ -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)
}