Skip to content

Commit 1c752eb

Browse files
committed
Merge branch 'main' into arosiclair-transition-fix
2 parents b4c2972 + 09ff150 commit 1c752eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1340
-1341
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,11 @@ For example:
157157
#### Web
158158
<!-- Insert screenshots of your changes on the web platform-->
159159

160-
#### Mobile Web
161-
<!-- Insert screenshots of your changes on the web platform (from a mobile browser)-->
160+
#### Mobile Web - Chrome
161+
<!-- Insert screenshots of your changes on the web platform (from chrome mobile browser)-->
162+
163+
#### Mobile Web - Safari
164+
<!-- Insert screenshots of your changes on the web platform (from safari mobile browser)-->
162165

163166
#### Desktop
164167
<!-- Insert screenshots of your changes on the desktop platform-->

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ android {
155155
minSdkVersion rootProject.ext.minSdkVersion
156156
targetSdkVersion rootProject.ext.targetSdkVersion
157157
multiDexEnabled rootProject.ext.multiDexEnabled
158-
versionCode 1001020200
159-
versionName "1.2.2-0"
158+
versionCode 1001020401
159+
versionName "1.2.4-1"
160160
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
161161

162162
if (isNewArchitectureEnabled()) {

fastlane/Fastfile

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ platform :ios do
141141
end
142142

143143
upload_symbols_to_crashlytics(
144+
app_id: "1:921154746561:ios:216bd10ccc947659027c40",
144145
dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH],
145146
gsp_path: "./ios/GoogleService-Info.plist",
146147
binary_path: "./ios/Pods/FirebaseCrashlytics/upload-symbols"

ios/NewExpensify/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.2.2</string>
20+
<string>1.2.4</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.2.2.0</string>
33+
<string>1.2.4.1</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.2</string>
18+
<string>1.2.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.2.2.0</string>
22+
<string>1.2.4.1</string>
2323
</dict>
2424
</plist>

jest/setup.js

+13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jest.mock('../src/libs/BootSplash', () => ({
2323
getVisibilityStatus: jest.fn().mockResolvedValue('hidden'),
2424
}));
2525

26+
jest.mock('react-native-blob-util', () => ({}));
27+
28+
// Turn off the console logs for timing events. They are not relevant for unit tests and create a lot of noise
29+
jest.spyOn(console, 'debug').mockImplementation((...params) => {
30+
if (params[0].indexOf('Timing:') === 0) {
31+
return;
32+
}
33+
34+
// Send the message to console.log but don't re-used console.debug or else this mock method is called in an infinite loop. Instead, just prefix the output with the word "DEBUG"
35+
// eslint-disable-next-line no-console
36+
console.log('DEBUG', ...params);
37+
});
38+
2639
// Local notifications (a.k.a. browser notifications) do not run in native code. Our jest tests will also run against
2740
// any index.native.js files as they are using a react-native plugin. However, it is useful to mock this behavior so that we
2841
// can test the expected web behavior and see if a browser notification would be shown or not.

0 commit comments

Comments
 (0)