Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dream11):unit tests in iOS #1278

Draft
wants to merge 4 commits into
base: dream11
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
254 changes: 169 additions & 85 deletions .circleci/config.yml

Large diffs are not rendered by default.

68 changes: 0 additions & 68 deletions examples/default/ios/InstabugTests/InstabugFeatureRequestsTests.m

This file was deleted.

2 changes: 1 addition & 1 deletion examples/default/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prepare_react_native_project!
# dependencies: {
# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
# ```
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled
flipper_config = FlipperConfiguration.disabled

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Expand Down
30 changes: 0 additions & 30 deletions ios/RNInstabug/InstabugFeatureRequestsBridge.h

This file was deleted.

60 changes: 0 additions & 60 deletions ios/RNInstabug/InstabugFeatureRequestsBridge.m

This file was deleted.

2 changes: 1 addition & 1 deletion ios/RNInstabug/InstabugReactBridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

- (void)logVerbose:(NSString *)log;

- (void)setReproStepsConfig: (IBGUserStepsMode)bugMode :(IBGUserStepsMode)crashMode:(IBGUserStepsMode)sessionReplayMode :(IBGUserStepsMode)anr :(IBGUserStepsMode)appHangsMode :(IBGUserStepsMode)fatalCrashMode :(IBGUserStepsMode)nonFatalCrashMode :(IBGUserStepsMode)forceRestartMode : (IBGUserStepsMode) oomMode;
- (void)setReproStepsConfig: (IBGUserStepsMode)bugMode :(IBGUserStepsMode)sessionReplayMode :(IBGUserStepsMode) anr :(IBGUserStepsMode)appHangsMode :(IBGUserStepsMode)fatalCrashMode :(IBGUserStepsMode)nonFatalCrashMode :(IBGUserStepsMode)forceRestartMode : (IBGUserStepsMode) oomMode ;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it'd be more readable if we put each parameter on a separate line and give them names rather than having all of them unnamed.


- (void)setUserAttribute:(NSString *)key withValue:(NSString *)value;

Expand Down
46 changes: 0 additions & 46 deletions ios/RNInstabug/InstabugSurveysBridge.h

This file was deleted.

106 changes: 0 additions & 106 deletions ios/RNInstabug/InstabugSurveysBridge.m

This file was deleted.