Commit bcb991a3 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent a13d5050
......@@ -131,3 +131,13 @@ func TestWatch(t *testing.T) {
xtesting.DrvTestWatch(t, dsrv.URL(), openByURL)
})
}
func xtempdir(t *testing.T) string {
t.Helper()
tmpd, err := ioutil.TempDir("", "demo")
if err != nil {
t.Fatal(err)
}
return tmpd
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment