The default generated index.html for the browser-test target uses [:script {:src "/js/test.js"}] (note the starting "/"), which fails if it's not at a web root.
A quick fix would be to change it to [:script {:src "js/test.js"}], since the "js" dir is relative.
The default generated index.html for the
browser-testtarget uses[:script {:src "/js/test.js"}](note the starting "/"), which fails if it's not at a web root.A quick fix would be to change it to
[:script {:src "js/test.js"}], since the "js" dir is relative.