Дамир Газизов 50745011d6 доделаны некоторые странички | 4 months ago | |
---|---|---|
.. | ||
LICENSE | 4 months ago | |
README.md | 4 months ago | |
index.js | 4 months ago | |
package.json | 4 months ago |
Babel preset for all Jest plugins. This preset is automatically included when using babel-jest.
$ npm install --save-dev babel-preset-jest
babel.config.js
(Recommended)module.exports = {
presets: ['jest'],
};
$ babel script.js --presets jest
require('@babel/core').transform('code', {
presets: ['jest'],
});