Fork me on GitHub
#dirac
<
2016-02-23
>
denisj07:02:18

@darwin: I have finally isolated the cause of missing cljs sources in our unit test app. It's nothing to do with dirac or devtools plugin. We were running our unit test html runner using

file:///somepath/test.html
whereas our app dev build runs via
localhost:3450/app.html
because we use Figwheel. While running file:/// used to show cljs sources, it seems Chrome (Canary/Unstable & Release) at some point stopped showing cljs when from file://// So the workaround for now for us is to also run figwheel for our tests or something like python -m SimpleHTTPServer 4450 Anyway thought I'd pass on our findings and this may be useful for others.

darwin11:02:23

@denisj: thanks for sharing, I’m glad you have resolved it