# babelify-jest **Repository Path**: mirrors_Shopify/babelify-jest ## Basic Information - **Project Name**: babelify-jest - **Description**: Jest plugin for Babel which handles babelify modules gently - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-28 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # babelify-jest [Babel](https://github.com/babel/babel) [jest](https://github.com/facebook/jest) plugin which handles babelify modules gently. Note: As of babelify-jest 1.0.0, Babel6 is required. ## Usage Make the following changes to `package.json`: ```json { "devDependencies": { "babel-jest": "*", "jest-cli": "*" }, "scripts": { "test": "jest" }, "jest": { "scriptPreprocessor": "/node_modules/babelify-jest", "testFileExtensions": ["es6", "js"], "moduleFileExtensions": ["js", "json", "es6"] } } ``` And run: $ npm install **And you're good to go!**