1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2024-09-20 00:56:43 +00:00
setup-python/node_modules/babel-preset-jest/README.md

34 lines
520 B
Markdown
Raw Normal View History

2019-06-27 01:12:00 +00:00
# babel-preset-jest
> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).
## Install
```sh
$ npm install --save-dev babel-preset-jest
```
## Usage
### Via `babel.config.js` (Recommended)
```js
module.exports = {
presets: ['jest'],
};
```
### Via CLI
```sh
$ babel script.js --presets jest
```
### Via Node API
```javascript
require('@babel/core').transform('code', {
presets: ['jest'],
});
```