mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
1938a5091e
### Summary Bumping Jest to latest, removed inline snapshot as there's a pending bug with trailing whitespaces inside of it being removed by IDEs (solution is to make them regular snapshots, but in this case the test was just plain unnecessary) ### Test plan CI
6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
// added for Jest inline snapshots to not use default Prettier config
|
|
module.exports = {
|
|
singleQuote: true,
|
|
trailingComma: "es5"
|
|
}
|