Created by: pugnascotia
I noticed that when running ./tasks/e2e.sh
, the node version check was failing to execute properly due to bash complaining (version 3.2.57(1)-release
on my Mac OSX machine). Once I changed the test syntax to use [[
, I found that sed wasn't stripping the node version correctly. I verified this with:
nvm use 0.10
./tasks/e2e.sh
...which bombed out on a 'const' declaration'. It's probably down to some platform peculiarities, but good to fix them nonetheless.