temporary disable test and lint for release

This commit is contained in:
Daniel Appelgren
2021-09-03 15:49:51 +02:00
parent 6f21b15f51
commit c2caec0fd3

View File

@@ -44,11 +44,19 @@ trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
# echo an error message before exiting
trap exitMessage EXIT
# ----------------------------------
# RUN ESLINT
# ----------------------------------
echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}"
#npm run lint
echo -e "${GREEN}Tests finished${NOCOLOR}"
# ----------------------------------
# E2E TESTS
# ----------------------------------
echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}"
npm run test
#npm run test
echo -e "${GREEN}Tests finished${NOCOLOR}"
# ----------------------------------