0.0.1 • Published 5 years ago

jest-svelte v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

jest-svelte

A tool for enabling Jest unit tests in SvelteJS.

Installation

Install the package

  yarn add jest-svelte --dev

Update your jest configuration

  "jest": {
    "transform": {
      "\\.js$": "babel-jest",
      "\\.html$": "./dist/index.js",
      "\\.svelte$": "./dist/index.js"
    },
    "moduleFileExtensions": [
      "js",
      "svelte",
      "html"
    ]
  }