docker-grafana icon indicating copy to clipboard operation
docker-grafana copied to clipboard

test.sh missing

Open marcowork opened this issue 5 years ago • 0 comments

In your package.json file you use NPM to start test scripts using the following line: "test": "cd test && sh test.sh"

the whole file looks like this: eg: "scripts": { "docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb", "docs:watch": "nodemon --config ./nodemon.json --exec 'yarn' docs", "d-build": "docker build -t stefanwalther/grafana .", "d-run": "docker run -it stefanwalther/grafana /bin/bash", "test": "cd test && sh test.sh" },

but in you .gitignore file you have the following:

.idea/ .vscode/ /test.sh

if you ignore you /test.sh npm run test does not work. please remove the /test.sh in your ignore file ad push it again.

marcowork avatar Oct 26 '19 10:10 marcowork