614 B
614 B
npm install-test
Equivalent to running
npm installfollowed bynpm test. Note:itcan be used as shorthand forinstall-test. More information: https://docs.npmjs.com/cli/npm-install-test/.
- Install all dependencies and then run tests:
npm {{[it|install-test]}}
- Install a specific package and then run tests:
npm {{[it|install-test]}} {{package_name}}
- Install a package and save it as a dependency before running tests:
npm {{[it|install-test]}} {{package_name}} {{[-S|--save]}}
- Install dependencies globally and then run tests:
npm {{[it|install-test]}} {{[-g|--global]}}