KwanMan / jest-buble

Jest plugin to use babel for transformation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jest-buble

Jest plugin to use buble for transformation.

Usage

$ yarn add --dev jest-buble buble

In your package.json:

  "jest": {
    "transform": {
      "^.+\\.js$": "jest-buble"
    }
  }

Configuring buble

Jest doesn't support passing in options to transformers through their config, so you can define a .bublerc JSON file with your buble options:

// .bublerc
{
  "objectAssign": "Object.assign"
}

About

Jest plugin to use babel for transformation.


Languages

Language:JavaScript 100.0%