Open
Description
Bug
Seems like (unintentionally?) jsdom setting in the generated config is set to false:
Which means the tests don't run from IDEs.
Manually changing jsdom
to true
in the generated json config leads to tests running successfully via both bloop and from IDE.
Reproduce
It's not minimal, but not involved:
- Clone https://github.com/keynmol/http4s-laminar-stack
- Attempt to run
FrontendSpec
It will fail - modify
.bloop/frontend-test.json
, changingjsdom
property to true - run
FrontendSpec
again - it should succeed (as long as jsdom is installed on the machine)