-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Labels
Description
🌈 Feature
- What is this feature?
Jest allows configuration entries like:
"jest": {
"testURL": "http://localhost",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
"^(?!.*\\.(js|jsx|json)$)": "<rootDir>/test/fileTransform.js"
}
}
in the package.json file.
These configuration entries are ignored in codesandbox - leading to passing tests in a local copy - and failing tests in codesandbox.
- How the feature should work?
It will read and process the "jest" property from the package.json file.
- You have examples or an idea how it can be implemented?
This seems to be a server issue?
sapegin