Closed flickerfly closed 2 years ago
For anyone else with this issue, it is also solvable by doing
cd /path/to/bats-support
yarn link # can also do 'npm link'
cd /path/to/bats-assert
yarn link bats-support # can also do `npm link bats-support`
This allows the dependency to 'install' (symlink) properly
Fixed via #49
When trying to test the bats-assert module, I was getting this error:
bats: /opt/bats-helpers/bats-assert/test/../node_modules/bats-support/load.bash does not exist
I resolved it withsed -i 's/node_modules/../g' /opt/bats-helpers/bats-assert/test/test_helper.bash
This appears to be managed by bats-support and bats-files test_helper.bash scripts with a bit more flexibility that can probably be nearly copy and pasted.