Files
nativewind/packages/nativewind/jest.config.js
2022-07-01 13:48:56 +10:00

22 lines
526 B
JavaScript

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: "react-native",
globals: {
"ts-jest": {
tsconfig: "tsconfig.test.json",
},
},
transform: {
"^.+\\.jsx$": "babel-jest",
"^.+\\.tsx?$": "ts-jest",
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
testPathIgnorePatterns: [
"/node_modules/",
"/__tests__/babel/",
"/__tests__/tailwindcss/runner/",
"/__tests__/style-sheet/tests",
"/__tests__/types.d.ts",
],
};