I'm on my Mac at work and I'm trying to get started with the Serenity JS template project found here: https://github.com/serenity-js/serenity-js-cucumber-protractor-template. After I installed all the prerequisites and cloned the code, I ran the "npm ci" command, which fails with error:
Looks like you need the latest Serenity BDD CLI jar. Let me download it for you...
I'm terribly sorry, but something didn't go according to plan.
The API call has failed
I followed the same process on my personal PC and didn't have this issue. So, maybe it has something to do with security on my work machine? I have admin rights, but can't run any sudo commands. Any suggestions would be appreciated.
This error shows up when
@serenity-js/serenity-bdd
module fails to download the Serenity BDD reporting CLI - a Java artifact (.jar
) distributed viahttps://jcenter.bintray.com/
.The download process itself is invoked when an
npm install
ornpm ci
command invokes thispostinstall
script inpackage.json
:There could be several reasons for this error in a work setting:
jcenter.bintray.com
. If that's the case, then you most likely have an internal artifact repository (like Artifactory or Nexus), which mirrors the external repo. If you have it, then you can tellserenity-bdd
to fetch the.jar
from there:serenity-bdd
to ignore any invalid certs:Hope this helps!
Jan