This commit is contained in:
Andrea Maria Piana 2022-11-23 11:22:29 +00:00
parent ebdc6d2c15
commit 4a197ec5ef
No known key found for this signature in database
GPG Key ID: AA6CCA6DE0E06424
2 changed files with 7 additions and 1 deletions

1
cmd/e2e/.gitignore vendored
View File

@ -1,2 +1,3 @@
spiff-workflow
e2e
tmp/

View File

@ -4,6 +4,7 @@ import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
stdlog "log"
"math/rand"
"os"
@ -116,7 +117,11 @@ func main() {
return
}
_, err = StartClient(*seedPhrase, "./tmp")
file1, err := ioutil.TempFile("/tmp", "status-go-test")
if err != nil {
return
}
_, err = StartClient("", file1.Name())
if err != nil {
return
}