Server IP : 51.89.169.208 / Your IP : 18.223.33.204 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/opt/cpanel/ea-nodejs20/lib/node_modules/npm/docs/content/commands/ |
Upload File : |
--- title: npm-test section: 1 description: Test a package --- ### Synopsis ```bash npm test [-- <args>] aliases: tst, t ``` ### Description This runs a predefined command specified in the `"test"` property of a package's `"scripts"` object. ### Example ```json { "scripts": { "test": "node test.js" } } ``` ```bash npm test > npm@x.x.x test > node test.js (test.js output would be here) ``` ### Configuration #### `ignore-scripts` * Default: false * Type: Boolean If true, npm does not run scripts specified in package.json files. Note that commands explicitly intended to run a particular script, such as `npm start`, `npm stop`, `npm restart`, `npm test`, and `npm run-script` will still run their intended script if `ignore-scripts` is set, but they will *not* run any pre- or post-scripts. #### `script-shell` * Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm init <package-spec>` commands. ### See Also * [npm run-script](/commands/npm-run-script) * [npm scripts](/using-npm/scripts) * [npm start](/commands/npm-start) * [npm restart](/commands/npm-restart) * [npm stop](/commands/npm-stop)