Skip to content

Jest 시작

Getting Started

설치

sh
npm install --save-dev jest

package.json

json
{
  "scripts": {
    "test": "jest"
  }
}

Running from command line

sh
npm install jest --global
jest my-test