kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
plexus 2020-03-14T11:46:54.120Z

@flowthing I would start by increasing your timeout

flowthing 2020-03-17T13:59:26.120500Z

I increased it to 1 minute, but even that doesn't seem to help. Any other ideas? I'm not really sure where to begin looking. This is a bit of nasty issue because it never seems to occur on my machine, only in CI.

flowthing 2020-03-17T16:57:40.120700Z

I don't know what exactly it is that's timeouting here.

plexus 2020-03-19T15:45:01.125300Z

yeah sorry, it's really hard to get diagnostics on this stuff, because clj.repl.node/repl-env ignores the stderr/stdout of the node process, so you just don't know what's happening there.

plexus 2020-03-19T15:46:27.125500Z

it installs handlers which intercept the things that are printed and sends them on to the clojure process, but if something goes wrong before those handlers are active then it's hard to see what's going on. I would try wrapping the node executable in a wrapper which spits the tap's the out/err streams to a file

flowthing 2020-03-23T08:50:43.140100Z

OK, thanks! I'll see if I can whip up something like that.

flowthing 2020-03-14T13:30:20.120100Z

Thanks! I'll give that a try.