e2e
This commit is contained in:
parent
ebdc6d2c15
commit
4a197ec5ef
|
@ -1,2 +1,3 @@
|
|||
spiff-workflow
|
||||
e2e
|
||||
tmp/
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue