We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433fd74 commit a45db7eCopy full SHA for a45db7e
scripts/dream-11-delete-unused-features.sh
@@ -36,6 +36,15 @@ for feature in "${deletedFeaturesFilesInIosApp[@]}"; do
36
rm -f ios/RNInstabug/"$feature".m
37
done
38
39
+# Remove unused features iOS test files
40
+iosTestFiles=("InstabugSurveysTests.m" "InstabugFeatureRequestsTests.m")
41
+for file in "${iosTestFiles[@]}"; do
42
+ echo "Deleting $file"
43
+
44
+ rm -f examples/default/ios/InstabugTests/"$file"
45
+ node scripts/replace.js --pattern ".*$file.*" "" examples/default/ios/InstabugExample.xcodeproj/project.pbxproj
46
+done
47
48
node scripts/replace.js "#import <Instabug/IBGSurveys.h>" "" ios/RNInstabug/InstabugReactBridge.m
49
node scripts/replace.js "#import <Instabug/IBGSurveys.h>" "" ios/RNInstabug/InstabugReactBridge.h
50
0 commit comments