yarn test
パッケージによって定義された test スクリプトを実行します。
yarn test
パッケージに定義された scripts
オブジェクトがある場合、このコマンドは指定された test
を実行します。
例えば、以下のような scripts/test
という bash スクリプトがパッケージ内にある場合:
#!/bin/bash
echo "Hello, world!"
そして以下のような記述が package.json
にあるなら:
{
"name": "my-tribute-package",
"version": "1.0.0",
"description": "This is not the best package in the world, this is just a tribute.",
"main": "index.js",
"author": "Yarn Contributor",
"license": "MIT",
"scripts": {
"test": "scripts/test"
}
}
yarn test
を実行した結果は以下のようになります:
$ yarn test
yarn test v0.15.1
$ "./scripts/test"
Hello, world!
✨ Done in 0.17s.
yarn run test
yarn test
は yarn run test
のショートカットでもあります。