package share import ( "log" "os" "path" "testing" "github.com/stretchr/testify/assert" ) func TestWatch(t *testing.T) { root := path.Join(os.Getenv("YAO_DEV"), "/tests/flows") assert.NotPanics(t, func() { go Watch(root, func(op string, file string) { log.Println(op, file) }) }) }