npm 测试 test

2021-10-29 10:51 更新

测试脚本

概要

  npm test [-- <args>]


  aliases: t, tst

描述

如果 package.json 文件中定义了 "test" 脚本,则执行。

例子

{
  "scripts": {
    "test": "node test.js"
  }
}
npm test
> npm@x.x.x test
> node test.js


(test.js output would be here)

配置

ignore-scripts 忽略脚本

  • 默认值:false
  • 类型:Boolean

如果为 true,则 npm 不会运行 package.json 文件中指定的脚本。

请注意,明确用于运行特定脚本的命令,例如 npm startnpm stopnpm restartnpm test, 并且npm run-script 如果ignore-scripts已设置仍将运行其预期脚本,但它们不会运行任何前置或后置脚本。

script-shell

  • 默认值:POSIX 系统上的“/bin/sh”,Windows 上的“cmd.exe”
  • 类型:nullString

用于脚本的 shell 与npm exec,npm runnpm init <pkg>命令一起运行。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号