adds configurable debugging of startup of processes and print out some info from the chrome viable() function for debugging purposes

This commit is contained in:
Thomas Bøgh Fangel
2019-06-13 15:59:06 +02:00
parent cfea2b8d9d
commit bbd0a893b1
7 changed files with 83 additions and 35 deletions

View File

@@ -7,13 +7,13 @@ import (
)
func TestUnoconvStart(t *testing.T) {
p := NewUnoconv()
p := NewUnoconv(false)
err := p.Start()
require.Nil(t, err)
}
func TestUnoconvShutdown(t *testing.T) {
p := NewUnoconv()
p := NewUnoconv(false)
err := p.Shutdown()
require.Nil(t, err)
}