FaasJS
Home
  • Guide
  • Documents
  • Starter Template
  • Changelog
  • Ecosystem

    • VS Code Plugin
    • Docker Images
  • Github
  • Contributing
  • Sponsor
  • Security
  • English
  • 简体中文
Home
  • Guide
  • Documents
  • Starter Template
  • Changelog
  • Ecosystem

    • VS Code Plugin
    • Docker Images
  • Github
  • Contributing
  • Sponsor
  • Security
  • English
  • 简体中文

Documents / @faasjs/jest

@faasjs/jest

License: MITNPM Version

A jest plugin for faasjs projects.

Install

npm install -d @faasjs/jest

Usage

Add jest to your package.json:

"jest": {
  "transform": {
    ".(jsx|tsx?)": "@faasjs/jest"
  },
  "testRegex": "/*\\.test\\.tsx?$",
  "coveragePathIgnorePatterns": [
    "/lib/",
    "/dist/",
    "/tmp/",
    "/__tests__/",
    "!*.d.ts"
  ],
  "moduleNameMapper": {
    "\\.(css|less|sass|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "@faasjs/jest"
  }
}