Skip to content

Fix adding unreported expense when expense is created in offline mode #62097

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

Conversation

sumo-slonik
Copy link
Contributor

@sumo-slonik sumo-slonik commented May 15, 2025

Explanation of Change

A newly created expense without an associated report has no report ID at all, rather than being set to 0.

Fixed Issues

$ #61999
$ #62001
PROPOSAL:

Tests

  1. Go offline.
  2. Go to self DM.
  3. Track a manual expense in self DM.
  4. Go to workspace chat.
  5. Submit an expense.
  6. Click on the expense preview.
  7. Click More.
  8. Click Add expense > Add unreported expense.
  • Verify that no errors appear in the JS console

Offline tests

Same as test

QA Steps

Same as test

// TODO: These must be filled out, or the issue title must include "[No QA]."

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
Screen.Recording.2025-05-15.at.17.00.56.2.mov
MacOS: Desktop
Screen.Recording.2025-05-16.at.11.22.29.mov

@sumo-slonik sumo-slonik force-pushed the bugfix/kuba_nowakowski/offline-mode-expense-in-unreportedExpenses branch from b11f3a3 to e31e605 Compare May 15, 2025 14:40
@sumo-slonik
Copy link
Contributor Author

Regarding getTransactions, which appears in checks as a violated ESLint rule because getTransactions is deprecated:

I think we shouldn’t worry about it because we are in utility functions here, so:

Firstly, it's better to avoid unnecessary changes.

Secondly, we can't use useOnyx here anyway — we would have to implement it the same way as it's currently done using onyxConnect.

let allTransactions: OnyxCollection<Transaction> = {};

Onyx.connect({
    key: ONYXKEYS.COLLECTION.TRANSACTION,
    waitForCollectionCallback: true,
    callback: (value) => {
        if (!value) {
            return;
        }
        allTransactions = Object.fromEntries(Object.entries(value).filter(([, transaction]) => !!transaction));
    },
});

So we wouldn't really gain anything from making this change.

@sumo-slonik
Copy link
Contributor Author

This still reproduces for transactions that were created and added offline, and I don't think it's part of this task.

@sumo-slonik sumo-slonik marked this pull request as ready for review May 15, 2025 15:15
@sumo-slonik sumo-slonik requested a review from a team as a code owner May 15, 2025 15:15
@melvin-bot melvin-bot bot requested a review from DylanDylann May 15, 2025 15:15
Copy link

melvin-bot bot commented May 15, 2025

@DylanDylann Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot removed the request for review from a team May 15, 2025 15:15
@DylanDylann
Copy link
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Screen.Recording.2025-05-16.at.15.56.38.mp4

Copy link
Contributor

@DylanDylann DylanDylann left a comment

Choose a reason for hiding this comment

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

LGTM. Note that getTransaction deprecation warning is being handled #61910

@melvin-bot melvin-bot bot requested a review from mountiny May 16, 2025 09:08
@sumo-slonik
Copy link
Contributor Author

sumo-slonik commented May 16, 2025

Note that getTransaction deprecation warning is being handled #61910

Thanks, I didn’t notice that.

@mountiny
Copy link
Contributor

Deprecated note but we did not touch that function so moving ahead

@mountiny mountiny merged commit 9a35d53 into Expensify:main May 16, 2025
20 of 21 checks passed
@melvin-bot melvin-bot bot added the Emergency label May 16, 2025
Copy link

melvin-bot bot commented May 16, 2025

@mountiny looks like this was merged without a test passing. Please add a note explaining why this was done and remove the Emergency label if this is not an emergency.

@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@sumo-slonik
Copy link
Contributor Author

Deprecated note but we did not touch that function so moving ahead

#62097 (comment)

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label May 16, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/3)

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Open search router TTI, Linking

Significant Changes To Duration

Name Duration
App start time contentAppeared_To_screenTTI 808.048 ms → 1175.492 ms (+367.445 ms, +45.5%) 🔴🔴
App start time TTI 1482.265 ms → 1828.983 ms (+346.718 ms, +23.4%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 808.048 ms
Stdev: 246.312 ms (30.5%)
Runs: 502.8619530000724 522.5011819999199 541.9943240000866 546.0477839999367 554.9384020001162 561.7306770000141 584.5846969999839 585.0037559999619 587.7970239999704 593.356235000072 595.0129180001095 595.8608029999305 596.149209999945 597.7674569999799 601.36738099996 604.3602940000128 606.4403470000252 606.7650780000258 607.3234159999993 610.6926150000654 613.6164080000017 615.3884779999498 617.2964399999473 626.6036139999051 628.2065059999004 628.3662719998974 637.5445069998968 640.7582169999368 647.2424159999937 653.3732219999656 655.652131000068 665.2529120000545 667.3966230000369 679.0066790001001 680.3108149999753 685.309249999933 1037.9110439999495 1056.3642130000517 1065.7734260000288 1070.2381879999302 1073.278384000063 1075.100116000045 1081.4586539999582 1082.5765060000122 1089.403886999935 1089.5072000001092 1093.3237519999966 1100.8595239999704 1110.586452000076 1110.606446000049 1117.3901219998952 1119.7144069999922 1124.7501379998866 1134.20857300004 1137.9780290001072 1140.9198149999138 1148.32036100002 1155.2912679999135 1155.7409049998969 1167.688628999982

Current
Mean: 1175.492 ms
Stdev: 42.282 ms (3.6%)
Runs: 1045.9018910001032 1071.3128569999244 1088.1646129998844 1104.283381999936 1105.6032970000524 1112.2310079999734 1131.2477510001045 1134.149068000028 1143.2012139998842 1144.1489850000944 1145.0790780000389 1147.5382519999985 1153.7535439999774 1156.586457000114 1157.0997800000478 1157.9565669998992 1164.9132179999724 1167.807802000083 1168.8899290000554 1171.2792070000432 1172.4507569998968 1173.1761930000503 1175.667693000054 1176.606713999994 1181.5774600000586 1181.7668689999264 1184.1889690000098 1186.5501379999332 1188.7188069999684 1194.1113710000645 1194.4631699998863 1196.0747080000583 1200.886940000113 1201.1343050000723 1201.2652569999918 1201.6631380000617 1202.7513969999272 1205.090610000072 1206.3449190000538 1207.1576600000262 1211.6940089999698 1212.62386599998 1214.236014999915 1216.9142730000895 1219.8207970000803 1221.2553099999204 1224.6120810001157 1225.3721670000814 1230.0321669999976 1233.5012489999644 1237.2548829999287
App start time TTI Baseline
Mean: 1482.265 ms
Stdev: 253.435 ms (17.1%)
Runs: 1175.9384020001162 1180.50118199992 1185.3602940000128 1191.7650780000258 1198.76745699998 1199.0129180001095 1230.8619530000724 1234.3234159999993 1241.2065059999004 1241.8608029999305 1250.730677000014 1254.356235000072 1255.3662719998974 1259.0477839999367 1271.6164080000017 1277.149209999945 1282.9943240000866 1294.2529120000545 1296.7970239999704 1298.603613999905 1299.396623000037 1302.3108149999753 1302.7582169999368 1303.2424159999937 1309.36738099996 1317.0037559999619 1322.652131000068 1324.2964399999473 1328.3884779999498 1329.6926150000654 1333.3732219999656 1342.5846969999839 1347.309249999933 1354.4403470000252 1382.5445069998968 1387.0066790001001 1683.5765060000122 1697.9110439999495 1700.2381879999302 1709.8595239999704 1711.5072000001092 1728.3642130000517 1751.606446000049 1751.7501379998866 1771.100116000045 1776.7144069999922 1776.9198149999138 1781.20857300004 1790.3237519999966 1794.32036100002 1795.7734260000288 1802.586452000076 1805.278384000063 1825.2912679999135 1828.688628999982 1835.7409049998969 1858.403886999935 1864.3901219998952 1865.9780290001072 1921.4586539999582

Current
Mean: 1828.983 ms
Stdev: 54.021 ms (3.0%)
Runs: 1680.9018910001032 1710.3128569999244 1725.283381999936 1731.1646129998844 1761.2310079999734 1768.2477510001045 1774.807802000083 1779.586457000114 1782.7535439999774 1783.5382519999985 1787.6032970000524 1788.0997800000478 1788.9565669998992 1790.1489850000944 1793.149068000028 1800.1761930000503 1801.0790780000389 1805.2012139998842 1810.62386599998 1811.667693000054 1813.9132179999724 1818.7188069999684 1823.606713999994 1828.7668689999264 1836.2792070000432 1837.1343050000723 1838.8899290000554 1839.4507569998968 1839.5501379999332 1844.1576600000262 1847.090610000072 1854.2652569999918 1859.1113710000645 1867.1889690000098 1867.4631699998863 1867.8207970000803 1867.9142730000895 1868.6940089999698 1871.886940000113 1873.0747080000583 1873.5012489999644 1875.2553099999204 1877.6120810001157 1885.5774600000586 1890.236014999915 1894.2548829999287 1897.6631380000617 1901.0321669999976 1902.3449190000538 1915.3721670000814 1925.7513969999272

Copy link
Contributor

Performance Comparison Report 📊 (2/3)

Meaningless Changes To Duration (1/2)

Show entries
Name Duration
App start time nativeLaunch 25.600 ms → 25.610 ms (+0.010 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 492.700 ms → 466.328 ms (-26.372 ms, -5.4%)
App start time nativeLaunchEnd_To_appCreationStart 79.667 ms → 82.627 ms (+2.960 ms, +3.7%)
App start time runJsBundle 327.233 ms → 328.733 ms (+1.500 ms, ±0.0%)
App start time appCreation 76.250 ms → 75.383 ms (-0.867 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.020 ms (-0.001 ms, -2.9%)
App start time (CPU) 150.868 % → 147.310 % (-3.559 %, -2.4%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.987 MB → 366.023 MB (+4.036 MB, +1.1%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.168 % → 25.388 % (-1.780 %, -6.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 378.634 ms → 366.888 ms (-11.746 ms, -3.1%)
Report typing (CPU) 101.560 % → 99.927 % (-1.633 %, -1.6%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 446.598 MB → 445.447 MB (-1.151 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.031 % → 20.632 % (-0.399 %, -1.9%)
Chat opening Chat TTI 870.162 ms → 855.676 ms (-14.486 ms, -1.7%)
Chat opening (CPU) 162.605 % → 163.465 % (+0.860 %, +0.5%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 384.806 MB → 384.051 MB (-0.755 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.041 % → 32.127 % (+0.086 %, ±0.0%)
Money request - Open Manual Tracking 141.455 ms → 138.607 ms (-2.848 ms, -2.0%)
Money request - Open Contacts 222.695 ms → 223.327 ms (+0.632 ms, ±0.0%)
Money request (CPU) 182.516 % → 180.891 % (-1.625 %, -0.9%)
Money request (FPS) 59.107 FPS → 59.391 FPS (+0.284 FPS, ±0.0%)
Money request (RAM) 441.394 MB → 448.287 MB (+6.893 MB, +1.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.198 % → 44.422 % (+0.223 %, +0.5%)
Money request - Open Create 133.980 ms → 136.713 ms (+2.732 ms, +2.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 25.600 ms
Stdev: 4.091 ms (16.0%)
Runs: 20 21 21 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 24 24 24 24 24 24 25 25 25 25 25 25 25 26 26 26 27 27 27 28 28 28 28 29 29 29 29 29 30 31 31 33 34 34 35 35 36

Current
Mean: 25.610 ms
Stdev: 3.527 ms (13.8%)
Runs: 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 24 24 24 24 24 24 24 25 25 25 26 26 26 26 26 26 27 27 27 27 28 28 28 28 28 28 29 29 29 29 30 30 30 31 32 34 34 35
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 492.700 ms
Stdev: 48.394 ms (9.8%)
Runs: 414 415 415 417 428 429 436 436 437 440 447 449 451 451 453 459 459 460 461 463 469 470 470 471 472 476 477 477 480 481 485 487 491 497 499 501 506 506 507 508 522 525 526 526 527 532 538 541 545 547 548 552 554 556 564 565 571 578 588 607

Current
Mean: 466.328 ms
Stdev: 22.308 ms (4.8%)
Runs: 415 419 428 436 437 440 440 446 446 446 449 450 453 453 454 454 455 455 457 457 458 458 458 458 460 461 462 463 463 463 464 464 465 466 467 469 470 471 472 472 473 475 476 480 481 482 487 489 491 496 496 499 499 503 504 509 514 519
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 79.667 ms
Stdev: 10.942 ms (13.7%)
Runs: 62 64 65 66 67 67 67 68 68 68 69 69 69 71 71 71 72 73 73 73 74 74 74 75 75 75 76 77 78 78 79 79 79 79 80 81 81 82 83 83 83 85 85 86 86 87 88 88 88 90 90 91 92 92 92 98 103 103 109 109

Current
Mean: 82.627 ms
Stdev: 9.408 ms (11.4%)
Runs: 65 66 68 70 70 72 72 73 73 73 73 74 74 75 75 75 76 76 78 78 78 79 79 79 79 80 81 81 81 82 82 82 83 83 84 85 85 85 85 87 87 87 87 87 88 88 89 91 91 94 94 96 97 98 99 99 100 101 106
App start time runJsBundle Baseline
Mean: 327.233 ms
Stdev: 19.413 ms (5.9%)
Runs: 291 291 292 292 292 292 297 297 298 298 302 302 302 302 303 303 303 303 304 304 310 310 311 311 311 311 311 311 311 311 312 312 312 312 312 312 314 314 317 317 317 317 318 318 320 320 322 322 323 323 325 325 325 325 326 326 326 326 328 328 329 329 329 329 330 330 330 330 331 331 332 332 334 334 334 334 334 334 336 336 337 337 339 339 340 340 340 340 341 341 341 341 345 345 346 346 346 346 346 346 348 348 348 348 349 349 349 349 352 352 354 354 359 359 362 362 369 369 369 369

Current
Mean: 328.733 ms
Stdev: 20.112 ms (6.1%)
Runs: 286 286 287 287 292 292 293 293 299 299 301 301 301 301 305 305 309 309 309 309 309 309 312 312 313 313 314 314 316 316 316 316 317 317 319 319 319 319 319 319 319 319 319 319 319 319 321 321 323 323 323 323 325 325 325 325 328 328 329 329 329 329 330 330 335 335 335 335 336 336 336 336 337 337 338 338 338 338 338 338 339 339 340 340 340 340 340 340 342 342 342 342 342 342 344 344 346 346 347 347 348 348 348 348 351 351 351 351 352 352 360 360 365 365 365 365 366 366 377 377
App start time appCreation Baseline
Mean: 76.250 ms
Stdev: 10.310 ms (13.5%)
Runs: 61 61 64 64 65 65 65 65 66 66 66 66 67 67 68 68 68 68 68 70 70 70 71 71 71 71 72 72 73 73 75 75 76 76 78 78 79 79 80 80 80 80 82 83 83 83 84 85 85 86 87 89 90 91 91 92 93 95 102 106

Current
Mean: 75.383 ms
Stdev: 9.888 ms (13.1%)
Runs: 58 59 62 62 63 63 63 64 64 65 65 66 67 67 67 67 68 68 69 70 70 71 72 72 72 72 73 73 74 74 75 75 75 76 76 76 76 77 78 78 78 80 80 82 83 83 85 86 86 86 87 88 88 88 90 90 91 93 95 102
App start time regularAppStart Baseline
Mean: 0.021 ms
Stdev: 0.002 ms (10.4%)
Runs: 0.017578000202775 0.017619000049307942 0.017619000049307942 0.017863000044599175 0.017943999962881207 0.01798499980941415 0.01818799995817244 0.018188999965786934 0.01827000011689961 0.01831099996343255 0.018350999802350998 0.018554000183939934 0.018554999958723783 0.018596000038087368 0.0186769999563694 0.018758000107482076 0.019328000023961067 0.019450000021606684 0.019611999858170748 0.019652999937534332 0.019694000016897917 0.019694000016897917 0.0197350000962615 0.01989799994044006 0.01989799994044006 0.020060000009834766 0.02006100001744926 0.020100999856367707 0.0201409999281168 0.020182000007480383 0.02034499985165894 0.02042700001038611 0.020671000005677342 0.020832999842241406 0.021036999998614192 0.021078000077977777 0.02115899999625981 0.021280999993905425 0.02132200007326901 0.021403000224381685 0.021646999986842275 0.021890999982133508 0.021891999989748 0.021972999908030033 0.022256999975070357 0.022421000059694052 0.022786000045016408 0.02311200019903481 0.023275000043213367 0.023804000113159418 0.024006999796256423 0.024250999791547656 0.02429199987091124 0.02437400002963841 0.024618000024929643 0.027057999977841973

Current
Mean: 0.020 ms
Stdev: 0.002 ms (7.6%)
Runs: 0.01782199996523559 0.017943999962881207 0.018106999807059765 0.01810700003989041 0.01810700003989041 0.018146999878808856 0.018229000037536025 0.018391999881714582 0.018473000032827258 0.018554999958723783 0.018596000038087368 0.01863600010983646 0.018718000035732985 0.018798000179231167 0.018920999951660633 0.018962000031024218 0.019001999869942665 0.01904299994930625 0.01908300002105534 0.019124999875202775 0.019164999946951866 0.019247000105679035 0.019327000016346574 0.019328000023961067 0.0194089999422431 0.019450000021606684 0.01953100017271936 0.01961299986578524 0.019652999937534332 0.01965400017797947 0.019693999784067273 0.019733999855816364 0.019733999855816364 0.019816000014543533 0.020060000009834766 0.020264000166207552 0.020304000005126 0.020305000012740493 0.0204670000821352 0.0204670000821352 0.02050799992866814 0.020548000000417233 0.020671000005677342 0.02071099984459579 0.021117999916896224 0.02115899999625981 0.021200000075623393 0.021524999989196658 0.02176899998448789 0.022378999972715974 0.022419999819248915 0.02254199981689453 0.022624000208452344 0.022744999965652823 0.022909000050276518 0.023599999956786633 0.02388500003144145
App start time (CPU) Baseline
Mean: 150.868 %
Stdev: 7.907 % (5.2%)
Runs: 134.7490039840638 135.80494916961575 137.28687527716716 139.91099705898685 140.42318535298034 140.81963504245704 141.1202221471267 141.27757692553266 141.8947689630852 142.01906674293363 142.2101402870633 142.43852810338353 142.81142098273574 143.23093228529936 143.49648674544872 143.68675019785175 145.861444003545 146.25135728922402 146.880209573708 146.90172219693886 147.13017751479293 147.2945891783567 147.45153515335784 148.03959932710194 148.35583104936086 149.2663148341836 149.7370562203568 150.02940105843817 150.77843774904923 151.55297167856077 151.86427059965317 152.3710319473837 152.40153129686635 152.91972984280676 153.05061220244886 153.72509960159363 154.47964201495358 154.7370517928287 154.87526450606975 154.92732787885308 155.63881127762255 155.7330677290837 156.38257071742777 156.87624750499006 157.68548767378078 157.82176324345002 157.90820201632567 158.18363273453102 158.73813968591008 158.92910535204902 159.26339285714286 159.88189176408056 159.93397047434277 160.94367588932806 161.33480419194706 163.03584117783265 165.45588131291305 165.72840186603156 167.69721115537857

Current
Mean: 147.310 %
Stdev: 4.659 % (3.2%)
Runs: 139.1817325837892 139.67042855286908 139.95077546396 140.43492014728608 140.8864831431343 141.011952191235 141.8057213142238 142.06397481010035 142.06747274130225 142.50385481204052 142.88104800152993 143.03663867230145 143.07472261443843 143.15606936416177 143.9392424236364 144.28067211133873 144.28665166854145 144.474477961312 144.50113577346735 144.54045103957068 144.89369006842483 145.0205108043634 145.13531405565567 145.16069057104906 146.4244290729671 147.07019957429097 147.07835449351268 147.18446834025906 147.61028939561442 147.67038953049715 147.83609595854017 147.9552135908027 148.25504714495182 148.25653376526196 148.3512185098345 148.56418639350818 148.92898055019555 149.0793716653993 149.9639837550703 150.1353313748994 150.42568536808005 150.48339973439565 150.52055021013857 150.7816982214573 150.92775418144402 151.07997750877985 151.08066092789412 152.04821167429913 152.12756131721306 152.38626067917278 152.4836244313431 152.54158349966733 153.2400608270082 154.1462217736721 155.7946907731965 157.44340085794082 160.81114398422093
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 361.987 MB
Stdev: 6.665 MB (1.8%)
Runs: 344.154296875 348.0104166666667 349.619140625 349.8984375 351.501953125 353.5234375 354.7109375 354.744140625 355.091796875 355.263671875 356.046875 356.091796875 356.173828125 356.671875 356.8372395833333 356.984375 357.509765625 357.69140625 357.7890625 358.1484375 359.390625 359.65234375 359.734375 360.58203125 361.591796875 361.6640625 361.943359375 362.205078125 362.630859375 362.7408854166667 363.361328125 363.9153645833333 364.072265625 364.16015625 364.2734375 364.3190104166667 364.7109375 365.19921875 365.3580729166667 365.6341145833333 365.74609375 366.23828125 366.3020833333333 366.32421875 366.9869791666667 367.30078125 367.6458333333333 368.14453125 368.3776041666667 369.4453125 369.859375 369.8997395833333 369.931640625 369.9921875 370.5052083333333 371.2721354166667 371.7408854166667 372.6341145833333 375.3046875

Current
Mean: 366.023 MB
Stdev: 5.170 MB (1.4%)
Runs: 353.6328125 354.013671875 354.08984375 355.8997395833333 357.662109375 358.1796875 359.75390625 359.810546875 359.8541666666667 360.51171875 361.7421875 362.212890625 362.5 362.5091145833333 362.5859375 363.1263020833333 363.1953125 363.44921875 363.6119791666667 364.4635416666667 364.7057291666667 365.1861979166667 365.52734375 365.6822916666667 365.7239583333333 365.9401041666667 366.13671875 366.2473958333333 366.515625 366.52734375 366.7096354166667 366.9583333333333 367.0794270833333 367.4427083333333 367.96875 368.0325520833333 368.0794270833333 368.1184895833333 368.4833984375 369.0143229166667 369.0260416666667 369.0299479166667 369.65625 370.046875 370.2005208333333 370.4036458333333 370.75 370.87109375 371.0911458333333 371.2955729166667 371.3059895833333 371.3567708333333 371.4231770833333 371.6940104166667 371.8072916666667 372.5338541666667 372.8424479166667 373.2356770833333 377.9127604166667
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
App start time (CPU/UI) Baseline
Mean: 27.168 %
Stdev: 2.927 % (10.8%)
Runs: 20 22 22 22.7 23.3 23.4 23.9 24 24 24.6 24.7 24.7 24.9 25 25 25.1 25.3 25.3 25.9 26 26 26 26.1 26.1 26.1 26.1 26.6 26.6 27 27 27.1 27.3 27.4 27.8 28 28.1 28.1 28.1 28.1 28.1 28.2 28.4 28.6 29 29 29.1 29.5 29.8 29.9 30.1 31 31.2 31.3 31.6 31.7 31.8 32 33.1 34.1

Current
Mean: 25.388 %
Stdev: 1.757 % (6.9%)
Runs: 22 22.6 22.7 22.7 23.3 23.3 23.3 23.3 23.9 24 24 24 24 24 24 24.1 24.1 24.5 24.6 24.6 24.6 24.7 24.7 24.7 24.7 24.9 25 25.1 25.2 25.2 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.4 26 26 26 26.1 26.6 26.6 26.6 26.7 26.7 26.7 26.7 27 27.2 27.3 27.7 28 28.1 28.1 29.6 29.9 30
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 378.634 ms
Stdev: 53.037 ms (14.0%)
Runs: 293.96321600023657 296.2046309998259 296.4459640001878 298.01033500023186 298.2452390003018 299.2536220001057 300.7547599999234 301.7595629999414 305.2265630001202 305.872315000277 306.381876999978 306.8533939998597 313.3757319999859 316.787434999831 316.822387999855 321.375 323.6827799999155 325.3096920000389 328.9791669999249 331.07486999966204 331.6957189999521 348.9742840002291 391.2227380000986 394.53645899984986 395.0885820002295 397.49344900017604 398.75801600003615 401.4279379998334 401.45328699983656 401.575114000123 401.8556730002165 402.65026900032535 402.75370300002396 403.0787360002287 407.95109099987894 408.46106000011787 409.33369899960235 410.5879719997756 411.8912760000676 412.99385600024834 415.447387999855 415.6846920000389 416.0898440000601 417.11478700023144 418.33406599983573 419.92565899994224 422.46463999990374 422.661987000145 425.8422040003352 427.27164799999446 430.48942099977285 431.6291499999352 432.18762199999765 435.5702309999615 436.0228270003572 436.99068199982867 439.18652400001884 440.02510600024834 451.0244960002601 463.90763399982825

Current
Mean: 366.888 ms
Stdev: 57.512 ms (15.7%)
Runs: 290.5332439998165 291.1018470004201 294.2001549997367 295.24617600021884 297.34826700016856 297.5731200003065 298.00524900015444 298.2279860000126 300.7863770001568 302.2462570001371 302.29634599993005 302.60778799979016 303.6569819999859 303.93644200032577 305.58036300027743 305.98596200020984 306.609375 307.2379560000263 307.7052409998141 309.0301109999418 310.9924720004201 312.4768880000338 312.78942900011316 316.25183099973947 323.0291340001859 325.7456869999878 342.68330899998546 350.67903700005263 384.8629560000263 399.8050130000338 400.6380610000342 401.5839439998381 402.690837000031 402.78006999986246 403.6208500000648 405.4897459996864 407.49686700012535 408.94950400013477 409.1604010001756 410.6201989999972 410.9243979998864 411.8361820001155 413.0156659996137 414.09293700009584 415.64139899984 416.2655850001611 418.6628829999827 418.90706399967894 419.8417970002629 420.09745300002396 424.8268229998648 428.60005699982867 430.334146999754 437.3875739998184 438.1508789998479 444.20178199978545 446.20450899982825 449.1592210000381 449.64074799977243 453.2290039998479
Report typing (CPU) Baseline
Mean: 101.560 %
Stdev: 7.730 % (7.6%)
Runs: 89.00106186850168 93.44798174811926 93.95733037281404 94.3427281151202 94.39361748987743 94.40841995969595 94.67510829537862 94.92011292646853 95.28217522013493 95.41045767588692 95.43950684730713 95.44477066520827 95.79728726926484 96.00816936315016 96.11779140161292 96.51618244608129 96.65856447231565 96.94334075988343 97.0245373039042 97.16849572000494 97.22926735268139 97.23010771475131 97.76692236014979 97.8764643672711 97.93717167803669 98.15571157906126 98.16964366559712 98.23911743524002 98.27203654561946 98.33396193330539 98.60063567865835 98.85182416207707 98.89569770855678 98.90950488660899 98.95075840485879 99.3553331374909 99.3603946499425 99.80589733844953 100.95644338127052 101.12335724348283 102.234266081432 102.25399583970658 102.48465581475513 103.1430626558725 105.69985483426017 108.57347253528377 108.75234863294679 110.21806583219491 111.56603841326526 112.64318588337083 112.78339285033191 113.77220852361258 114.1813380649811 114.34284810952786 116.30950570969324 117.84231899240994 118.75076020941917 119.64317549221485 119.84793174628456

Current
Mean: 99.927 %
Stdev: 6.275 % (6.3%)
Runs: 89.70736050029187 89.89754292342278 90.95871685341007 91.05445474922904 91.31033818773558 91.752473204258 91.91102279711954 92.26413790291893 93.93939245839246 94.16492933236057 95.22210260479866 95.60988701276885 95.64250258670074 95.90118231774161 96.0474699920681 96.12521489730668 96.16724839851365 96.21789133524305 96.24595031415276 96.4472504457365 96.45370382306479 96.58835329478354 96.62634848330013 96.63038317725541 97.11161086764788 97.21403908091006 97.48171052452173 97.64170367457773 98.1383316673174 98.15638405431295 98.89835056195075 99.08135458655676 99.46299972839664 99.84555536181757 99.97694198315222 100.81121220760366 100.88676935398361 100.96021842605428 101.28128245039186 102.02839649565833 102.24540433944355 102.57710658903267 102.992470986456 103.19901827024647 103.60824147387495 103.77126367660281 103.94766809457572 105.59228138304525 107.39197559673661 108.73632398849084 109.15795739616618 109.42720601502012 110.76502030500335 110.77290753820664 111.08584046124818 111.39214908287876 111.47145543714699 111.66717636693976 114.01452779068039
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 446.598 MB
Stdev: 8.264 MB (1.9%)
Runs: 430.4872532894737 431.2024739583333 431.3573288690476 431.6603515625 433.3364955357143 433.96957236842104 434.47574013157896 434.959375 435.0771484375 435.07791940789474 438.52890625 439.4058388157895 439.953125 440.1116365131579 441.49375 441.6814453125 442.09765625 442.3219572368421 442.6990234375 442.7952302631579 443.3694490131579 443.70579769736844 445.203125 446.3908025568182 447.001953125 447.0140269886364 447.3204900568182 447.689453125 448.0506036931818 448.2965198863636 448.40011160714283 448.5118963068182 448.8084161931818 448.92113095238096 450.31977982954544 450.6443359375 450.78248355263156 451.2728515625 451.29598721590907 451.64453125 451.728515625 452.0641447368421 452.5133167613636 453.765625 454.36328125 454.371484375 454.3795230263158 454.81484375 455.2112926136364 455.2662109375 455.8359375 456.70063920454544 458.49237351190476 458.5078125 458.77450284090907 460.7425595238095 461.24556107954544

Current
Mean: 445.447 MB
Stdev: 7.813 MB (1.8%)
Runs: 429.4819568452381 429.8971354166667 431.67686631944446 432.96147017045456 433.19613486842104 435.95625 436.06764914772725 436.15625 436.28984375 437.03515625 437.13075657894734 437.64918154761904 437.8123046875 438.8490234375 439.10460069444446 439.185546875 439.9196134868421 440.1046875 440.42495888157896 440.5043174342105 440.5236328125 440.9150390625 441.0794921875 441.0896484375 442.4083984375 442.9654605263158 443.48704769736844 444.0181640625 444.03018465909093 445.660546875 446.5900213068182 446.72336647727275 448.33718039772725 449.23314144736844 449.5838068181818 450.0236545138889 450.38760653409093 450.6361019736842 450.63796164772725 450.6546875 451.03515625 451.10298295454544 451.84641335227275 451.86399147727275 452.1015625 452.1383634868421 452.14864309210526 452.175390625 452.50106534090907 453.74325284090907 453.80859375 454.17631392045456 454.491796875 454.6290838068182 454.8519176136364 454.86830357142856 454.9376775568182 456.3758491847826 459.71200284090907 459.94252232142856

Copy link
Contributor

Performance Comparison Report 📊 (3/3)

Meaningless Changes To Duration (2/2)

Show entries
Name Duration
App start time nativeLaunch 25.600 ms → 25.610 ms (+0.010 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 492.700 ms → 466.328 ms (-26.372 ms, -5.4%)
App start time nativeLaunchEnd_To_appCreationStart 79.667 ms → 82.627 ms (+2.960 ms, +3.7%)
App start time runJsBundle 327.233 ms → 328.733 ms (+1.500 ms, ±0.0%)
App start time appCreation 76.250 ms → 75.383 ms (-0.867 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.020 ms (-0.001 ms, -2.9%)
App start time (CPU) 150.868 % → 147.310 % (-3.559 %, -2.4%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.987 MB → 366.023 MB (+4.036 MB, +1.1%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 27.168 % → 25.388 % (-1.780 %, -6.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 378.634 ms → 366.888 ms (-11.746 ms, -3.1%)
Report typing (CPU) 101.560 % → 99.927 % (-1.633 %, -1.6%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 446.598 MB → 445.447 MB (-1.151 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.031 % → 20.632 % (-0.399 %, -1.9%)
Chat opening Chat TTI 870.162 ms → 855.676 ms (-14.486 ms, -1.7%)
Chat opening (CPU) 162.605 % → 163.465 % (+0.860 %, +0.5%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 384.806 MB → 384.051 MB (-0.755 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.041 % → 32.127 % (+0.086 %, ±0.0%)
Money request - Open Manual Tracking 141.455 ms → 138.607 ms (-2.848 ms, -2.0%)
Money request - Open Contacts 222.695 ms → 223.327 ms (+0.632 ms, ±0.0%)
Money request (CPU) 182.516 % → 180.891 % (-1.625 %, -0.9%)
Money request (FPS) 59.107 FPS → 59.391 FPS (+0.284 FPS, ±0.0%)
Money request (RAM) 441.394 MB → 448.287 MB (+6.893 MB, +1.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.198 % → 44.422 % (+0.223 %, +0.5%)
Money request - Open Create 133.980 ms → 136.713 ms (+2.732 ms, +2.0%)
Show details
Name Duration
Report typing (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Report typing (CPU/UI) Baseline
Mean: 21.031 %
Stdev: 0.977 % (4.6%)
Runs: 18.7 19.5 19.6 19.7 19.7 19.8 19.9 20.1 20.1 20.3 20.4 20.4 20.5 20.5 20.5 20.5 20.5 20.6 20.6 20.6 20.6 20.7 20.7 20.7 20.7 20.8 20.8 20.9 20.9 21 21 21.1 21.1 21.1 21.1 21.3 21.3 21.4 21.4 21.4 21.5 21.5 21.6 21.7 21.8 22 22.1 22.1 22.2 22.4 22.4 22.6 23.3 23.4 23.6

Current
Mean: 20.632 %
Stdev: 0.763 % (3.7%)
Runs: 19 19.1 19.1 19.3 19.6 19.6 19.7 19.7 19.8 20 20 20 20.1 20.1 20.2 20.2 20.2 20.3 20.3 20.3 20.4 20.5 20.5 20.5 20.5 20.6 20.7 20.7 20.7 20.7 20.7 20.7 20.7 20.8 20.8 20.8 20.8 20.9 21 21 21 21 21.1 21.1 21.1 21.2 21.2 21.2 21.3 21.5 21.6 21.6 21.9 21.9 21.9 22.1 22.7
Chat opening Chat TTI Baseline
Mean: 870.162 ms
Stdev: 190.739 ms (21.9%)
Runs: 569.0556640001014 652.2213539998047 667.1715500000864 673.4631750001572 674.1427000002004 674.6887619998306 678.8818759997375 681.2020259997807 684.4842940000817 704.9809169997461 708.3199459998868 709.5122480001301 711.4059660001658 711.4171549999155 719.4313560002483 719.6741949999705 731.107788999565 736.3016769997776 743.5742190000601 745.2372240000404 746.0507409996353 746.7111010001972 754.485351999756 772.1453459998593 780.9689950002357 787.9046630002558 791.7803140003234 800.1561280000024 801.8174239997752 803.7137050000019 803.7712810002267 813.1492510000244 814.5817060000263 816.3074139999226 818.0946450000629 819.5513110002503 824.487712000031 827.0841070003808 831.6969809997827 833.9222419997677 840.3420820003375 841.7371419998817 1053.2633469998837 1053.7730709998868 1093.161784000229 1103.4116620002314 1111.5863450001925 1114.0780040002428 1121.79740400007 1146.0179039998911 1149.600260999985 1153.141277000308 1169.4587000003085 1184.4113369998522 1189.1816409998573 1189.3638509996235 1191.6794039998204 1195.6706139999442 1199.7637130003422 1223.644572999794

Current
Mean: 855.676 ms
Stdev: 182.087 ms (21.3%)
Runs: 668.8824459998868 676.4044599998742 676.8668619999662 678.8323169997893 684.3553059999831 687.7389730000868 700.6902669998817 712.9755049999803 714.6328129996546 724.1451820000075 725.9692389997654 729.0498449997976 730.9169109999202 731.926067000255 732.7303880001418 735.6275639999658 737.2857260000892 741.903157999739 746.9538990003057 749.412760999985 752.7084149997681 753.7366949999705 757.0149340000935 761.4757499997504 763.062173999846 764.7324629998766 764.8992929998785 766.2121179997921 767.238159999717 768.1625980003737 771.1380210001953 772.8438719999976 787.3898930000141 790.3858239999972 810.5771079999395 810.9127199999057 815.7329509998672 818.5863449997269 820.5406909999438 825.0402020001784 826.2170410002582 826.4134940002114 835.1494550001808 837.635743000079 838.75362199964 852.3558759996668 1092.534587000031 1092.8201910001226 1095.3360190000385 1100.3176269996911 1116.894043000415 1128.769328000024 1181.4982909997925 1181.9369710003957 1186.9777029999532 1210.360556000378 1213.0468759997748 1227.2771819997579 1256.5975750000216 1309.98099800013
Chat opening (CPU) Baseline
Mean: 162.605 %
Stdev: 4.934 % (3.0%)
Runs: 151.87831727066487 154.31550181516002 155.03844265081207 155.28450962794028 155.43072140825177 156.23688493996056 157.118419485809 157.5647943977782 157.83358618335976 158.74279017116072 158.74987085553298 158.91828686464245 159.00457296143304 159.58977256298533 159.6277793439958 159.67649606106707 159.737850243255 159.83122796471818 160.16783373860204 160.2271042077579 160.30802262940713 160.46183176351212 160.99141750921572 161.08574946104358 161.16334901192772 161.21644923595213 161.24844514754744 161.4711178065329 161.6913784500942 161.75350182951337 161.81318493560832 161.84187450526855 162.30334537464478 162.44691394950956 162.53538215762035 163.45385667996635 164.04577692710947 164.19819282905948 164.91321304604477 164.94684523763118 165.23092529844513 165.26715007327454 165.3970741231825 165.7285846140081 166.048968673669 166.10968084370862 166.1806725731381 166.2296533918743 167.0975993462049 167.3255298707963 167.37633079333241 169.3802516930086 170.40034858196702 170.68432305349782 172.23189080007316 172.4181458181239 173.53560379443326 175.57642827047135

Current
Mean: 163.465 %
Stdev: 4.206 % (2.6%)
Runs: 154.2145765364455 154.7159749690223 156.0806710025606 156.23420278592155 157.82752756509038 158.56514086236828 159.3999592290371 159.58015381092784 159.59885741567916 159.74411721800647 159.8166842416834 159.8346799001797 160.31216909453852 160.5308824504128 161.1344768088236 161.44397406753032 161.44788581023764 161.60975762114262 161.63353506532738 161.6694462673322 161.69049386781285 161.92722390214635 162.0932891540331 162.17828484931493 162.25962224255224 162.59084545358164 162.63000869919563 162.6333812839757 162.68501957718775 162.85979889963957 163.29914837747046 163.4956090250831 163.9083971388851 163.98067882691143 163.99135052981202 164.57104311121026 164.60207570172307 164.69257264428842 164.81702621651283 165.73550947073574 165.79692732595683 165.80261425565186 165.87653881566177 166.0566221394152 166.07471963879897 166.56904757059874 167.5705281701741 167.78720258557888 168.77484788263294 169.31169004594886 169.44303194501416 169.58202112361542 169.6045438774146 170.78032129225932 171.20458540253884 172.5038796516662 172.71348564742487
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 384.806 MB
Stdev: 6.311 MB (1.6%)
Runs: 371.0400390625 373.8388671875 374.521484375 375.2255859375 375.84140625 375.934375 377.017578125 377.484375 378.16484375 378.47265625 378.6671875 378.69296875 378.76953125 379.169921875 379.185546875 379.69140625 380.13828125 380.721875 380.8837890625 381.08984375 381.28828125 381.96484375 382.53125 382.53671875 383.31953125 383.603515625 383.621875 383.671875 383.7140625 384.18203125 384.3203125 384.6334635416667 384.75 385.54296875 386.24140625 386.39609375 387.14921875 387.58984375 387.6725260416667 388.5455729166667 388.650390625 388.8821614583333 389.33984375 390.0143229166667 390.3834635416667 390.5299479166667 390.619140625 390.73515625 390.923828125 391.02890625 391.275390625 391.3287760416667 391.7213541666667 393.26171875 393.5796875 393.90390625 394.12109375 394.771875 396.134765625 399.3118489583333

Current
Mean: 384.051 MB
Stdev: 7.058 MB (1.8%)
Runs: 372.24765625 372.447265625 373.8994140625 374.4140625 374.755859375 374.7607421875 375.9091796875 376.3015625 376.7236328125 376.9203125 377.10546875 377.7060546875 377.71484375 377.90625 378.0029296875 378.025 378.5576171875 378.564453125 378.8896484375 379.1708984375 379.2001953125 379.23046875 379.48359375 379.986328125 380.9970703125 381.63515625 381.666015625 382.544921875 382.71875 383.01015625 383.626953125 384.1865234375 385.86640625 386.03984375 386.0540364583333 386.203125 386.2138671875 386.45546875 387.0265625 387.26953125 387.690625 389.2024739583333 389.984375 390.01328125 390.7174479166667 390.97265625 391.3463541666667 391.56171875 391.7408854166667 391.97265625 392.0390625 392.51015625 392.7171875 392.946875 394.62109375 394.6455078125 396.94921875 398.890625 399.05703125
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Chat opening (CPU/UI) Baseline
Mean: 32.041 %
Stdev: 1.901 % (5.9%)
Runs: 27.7 28.9 29.2 29.4 29.7 29.8 29.9 29.9 30 30 30.2 30.3 30.3 30.7 30.8 30.8 30.9 31 31 31 31.3 31.3 31.3 31.4 31.5 31.6 31.6 31.7 31.7 31.8 31.9 31.9 32.2 32.3 32.4 32.5 32.6 32.6 32.6 32.9 33 33.1 33.1 33.2 33.4 33.4 33.5 33.7 33.7 33.8 33.9 34 34 34.2 34.5 34.9 36.2 37 37.2

Current
Mean: 32.127 %
Stdev: 2.117 % (6.6%)
Runs: 27.6 27.9 28.2 29.1 29.1 29.3 29.6 29.8 29.9 30.2 30.3 30.4 30.4 30.7 30.8 30.9 30.9 30.9 30.9 30.9 31 31 31.1 31.3 31.5 31.6 31.8 31.9 32 32 32.2 32.3 32.3 32.3 32.3 32.5 32.5 32.7 32.8 32.8 32.9 33.2 33.4 33.5 33.6 33.8 34 34 34.1 34.1 34.2 34.3 34.3 34.3 34.6 34.8 36.1 36.8 36.9 37
Money request - Open Manual Tracking Baseline
Mean: 141.455 ms
Stdev: 10.660 ms (7.5%)
Runs: 121.05395500082523 121.52437299955636 123.78063900023699 126.4476320007816 127.45666499994695 127.56424899958074 128.26021299976856 128.66764300037175 129.53483099956065 130.2746990006417 132.08020000066608 132.1387939993292 132.22497499920428 132.3039959995076 132.6096189999953 133.00012199953198 133.79207300022244 133.82153300009668 133.95227099955082 135.2817790005356 135.66483499947935 135.80761700030416 135.85587600059807 137.17643199954182 137.29069000016898 138.525675999932 139.1412760000676 139.5783280003816 139.5866290004924 139.88972899969667 141.18371600005776 141.6735030002892 143.06339500006288 144.00345800071955 144.27315300051123 145.2565509993583 145.3597410004586 145.54980400018394 145.557089000009 146.06237800046802 146.46516900043935 147.59033199958503 148.3045250000432 148.5803630007431 148.60542799998075 149.2072760006413 149.7481689993292 150.62386099994183 151.01176000013947 151.24068200029433 152.64168400038034 153.77860600035638 154.12288499996066 155.0932209994644 155.71842399984598 156.69803899992257 162.00769099965692 162.80017099995166 163.02990700025111 163.74609400052577

Current
Mean: 138.607 ms
Stdev: 9.944 ms (7.2%)
Runs: 115.06591799948364 116.61852999962866 122.27746600005776 123.00675499998033 124.19588200002909 124.74711100012064 127.1966150002554 127.76623600069433 127.92142799962312 129.24060099944472 129.4445799998939 129.54215500038117 129.77091499976814 130.10591599997133 130.1420900002122 130.36885499954224 131.80126999970526 133.0373529996723 133.58675200026482 133.6638589994982 135.82328299991786 135.9298909995705 136.37040199991316 136.4934490006417 136.69335900060833 137.64156099967659 137.92675700038671 137.9550379998982 139.32666000071913 139.67533400002867 140.47033699974418 141.10367800015956 141.15047200024128 141.41231300029904 141.68119299970567 142.1165360007435 142.13968900032341 142.31079100072384 142.95951400045305 143.06486000027508 143.93477399926633 144.00443500000983 144.09029099997133 144.2739260001108 144.48111999966204 145.0284009994939 145.140625 145.82629400026053 146.0391030004248 146.37003599945456 146.9139400003478 147.77868700027466 147.7897950001061 148.04471900034696 148.49690799973905 149.83911099936813 150.31579599995166 155.7964679999277 164.57938599959016 165.9431149996817
Money request - Open Contacts Baseline
Mean: 222.695 ms
Stdev: 11.101 ms (5.0%)
Runs: 200.2165930001065 201.16699200030416 207.03902200050652 211.09928399976343 211.53361000027508 211.5464679999277 211.86254899948835 211.8861500006169 212.31913300044835 212.83422899991274 212.90210000053048 212.9248460000381 213.1722820000723 213.3302009999752 213.52058999985456 214.2020260002464 214.24739599972963 214.7266440000385 216.3897700002417 217.1068109991029 217.13407399971038 217.3842369997874 217.61108400020748 218.06449399981648 218.46333799976856 219.23592100013047 219.31705700047314 219.73120199982077 221.47029700037092 221.68550600018352 222.06310999952257 222.71549500059336 223.0758459996432 224.72159899957478 224.7566320002079 225.1234530005604 227.83850099984556 228.1005449993536 228.28458699956536 228.74808799941093 228.87125700060278 229.60677099972963 231.29463700018823 233.29789199959487 233.36568200029433 233.87190799973905 235.03173799999058 235.63907899986953 235.70166100002825 237.2960609998554 238.2339679999277 238.93318699952215 241.05135100055486 241.6893319999799 243.15437800064683 254.32641599979252

Current
Mean: 223.327 ms
Stdev: 11.966 ms (5.4%)
Runs: 193.38842800073326 198.58072900027037 200.7663169996813 202.33280500024557 207.24641900043935 207.3668619999662 208.031413000077 211.49064199998975 212.171427000314 212.5618489999324 213.37158200051636 214.7347410004586 215.01322400011122 215.65388999972492 216.92968800012022 217.01383499987423 217.21777400001884 218.58528700005263 219.04585800040513 220.41202800069004 221.2892249999568 221.3911540005356 221.447103000246 222.14294400066137 222.15503000002354 222.28348799981177 222.5470789996907 222.6420900002122 223.5316570000723 224.463502000086 224.65604700054973 224.7422690000385 226.2370200008154 226.8529059998691 226.98608400020748 227.26053800061345 227.62776700034738 227.78393599949777 228.01200400013477 228.6011149995029 229.8057050006464 232.2525639999658 232.67745000030845 234.34285499993712 234.53328400012106 234.85847999993712 234.90344200003892 235.70283999945968 237.19990999996662 238.47798600047827 240.70373499952257 241.98449699953198 242.40230299998075 248.24003100022674 250.30769800022244
Money request (CPU) Baseline
Mean: 182.516 %
Stdev: 7.584 % (4.2%)
Runs: 169.61662410687245 171.23425533843846 171.4365004962225 172.7690371597535 173.01569119768428 173.29916374549302 173.54784182861306 173.85995203831982 174.05276270653684 174.69931722228438 174.92307649494074 175.3046559359699 175.40751027672445 175.73861183275136 175.98137581181857 176.36359902923365 176.5547320295553 176.91401090586876 176.97190576228164 177.22473519964728 177.36119461390084 177.92589434689205 178.36544590589696 178.81649644587603 178.89622577561005 178.94849732348783 179.04151563280493 179.20891483964334 179.9654247138556 180.9209230379461 181.00034582164284 181.34856367659188 182.45305758773722 183.0335932374116 183.32327021996497 185.1452681849762 185.19148992561992 185.68650291903379 185.73204295138788 185.87182563952092 186.80837270091232 188.21473856699828 188.63191540529272 189.14222504422207 189.33028536821817 190.15293615384098 190.22747903507747 190.3775109123618 190.69587407209255 191.1306188062915 191.63405603150312 191.74217340154928 192.2488814336967 192.84086209311988 192.98252319345212 193.15109222012254 193.208486042238 193.73168171939116 195.92394039468016 201.6365687326859

Current
Mean: 180.891 %
Stdev: 7.056 % (3.9%)
Runs: 167.2099765302625 170.65586413895034 171.24087167566495 172.0394966639087 172.63828812393683 173.01167714952663 173.02974090569398 173.04544533994792 173.13903383822068 173.38841838399162 173.75991139837654 174.29389263347156 174.63549671375603 175.19454538989993 175.5062289316422 176.12163044732407 176.3241722345622 176.4249285426906 176.5607254095747 176.76366711505574 176.93682746413478 176.97923153750247 177.00753095414814 177.2770855759559 177.41937511938966 177.7098917946748 177.94135982169314 177.97703170778527 178.4996001032011 179.13123569678612 179.55344910273243 180.19175524730528 180.549124857854 180.8849064094221 181.2779619787688 181.71666529912827 181.73778407509099 182.829841836226 183.44407372983898 183.65356453530327 184.49926771877222 185.17257494121284 185.38934199894203 185.75234621109368 185.78766096954973 185.8859568201961 186.24498532228716 186.6636524798698 187.645736733792 187.86326417959495 188.36392553038334 188.90583233737487 189.14990568148247 189.63923601768707 190.701649038507 194.29166207150539 195.20119110894137 195.43330267054793 195.8671740673127 197.2970971019222
Money request (FPS) Baseline
Mean: 59.107 FPS
Stdev: 0.863 FPS (1.5%)
Runs: 56.95914679228785 57.33897708608656 57.4250052138487 57.740105545070804 57.7809629781629 57.892239680125165 57.9640067769837 58.010800404653445 58.02396705903228 58.101486285934314 58.162225417695346 58.17221683167048 58.347258724878465 58.43301301741998 58.50775445944752 58.560407035211334 58.652967604357066 58.72266031801527 58.722952850361814 58.78974774367044 58.81230278180161 58.847845234633546 58.88095941295166 58.885024814084474 58.95353478305243 58.9567635852822 59.14966278703904 59.27210588376478 59.294809850757915 59.43853167931563 59.47168756034335 59.50008249508289 59.52813235279853 59.607946709176126 59.66211231156787 59.731585179148524 59.81926472314891 59.89925831460837 59.94850698916548 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 59.391 FPS
Stdev: 0.659 FPS (1.1%)
Runs: 57.753832338615666 57.762038034206526 57.81680653720092 57.96373944137029 58.121280753252954 58.24839365529237 58.315649588354724 58.65550956715085 58.71582774324462 58.7675001344146 58.85788595961523 58.91736656522953 58.92004537117258 58.941155763090705 58.991723422942286 59.05130020750935 59.12185710057068 59.16532940972878 59.21651100328664 59.25830555709849 59.35139939279715 59.36131852238822 59.41250887098361 59.44412906851108 59.50348353852683 59.52232441985095 59.582200938752024 59.60471229977258 59.612591139492416 59.635488577403244 59.65057678709055 59.65139838571036 59.652910429799256 59.69627868420411 59.71985320088993 59.73848434056397 59.85341094018547 59.86540755837599 59.89995210672256 59.978841652300794 59.982614132506924 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 441.394 MB
Stdev: 8.256 MB (1.9%)
Runs: 426.4799107142857 428.359375 429.64285714285717 429.7650669642857 429.93526785714283 430.2509765625 432.11104910714283 432.22433035714283 432.29799107142856 433.05970982142856 433.0654296875 433.07198660714283 433.1087239583333 434.80747767857144 434.85302734375 435.06361607142856 435.578125 436.69873046875 436.74051339285717 436.9365234375 437.17041015625 437.228515625 437.8505859375 438.01611328125 438.05859375 438.21630859375 438.26283482142856 439.69921875 440.30747767857144 441.71630859375 442.1435546875 442.46875 442.91629464285717 443.72377232142856 443.7265625 444.05908203125 444.15457589285717 444.40625 444.47998046875 444.64229910714283 445.16015625 445.1640625 445.25537109375 445.46533203125 446.56396484375 446.75146484375 446.77064732142856 447.5697544642857 447.99776785714283 449.220703125 450.03348214285717 452.3783482142857 454.08035714285717 454.24776785714283 454.265625 454.8522135416667 455.3325892857143 461.2455357142857 462.6010044642857

Current
Mean: 448.287 MB
Stdev: 8.823 MB (2.0%)
Runs: 426.72705078125 432.2197265625 435.09988839285717 435.44363839285717 436.2845982142857 437.2299107142857 438.9365234375 439.22265625 440.1692708333333 440.16964285714283 440.73193359375 440.76708984375 440.966796875 441.123046875 441.47935267857144 441.75948660714283 442.00223214285717 442.4966517857143 443.08426339285717 444.1060267857143 444.48939732142856 444.5424107142857 444.6513671875 444.7466517857143 444.92578125 445.1015625 445.828125 446.6334635416667 447.09228515625 447.17020089285717 447.86551339285717 448.06689453125 448.17020089285717 448.3588169642857 448.7377232142857 449.37220982142856 449.49951171875 450.23604910714283 450.27783203125 450.81919642857144 451.47314453125 452.35595703125 452.845703125 454.29248046875 454.29408482142856 455.7897135416667 455.9798177083333 455.994140625 458.5033482142857 458.5533854166667 458.62220982142856 459.13169642857144 459.4302455357143 459.78013392857144 459.9694010416667 460.22265625 463.2819010416667 464.8671875 467.48995535714283 467.75223214285717
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 44.198 %
Stdev: 2.888 % (6.5%)
Runs: 38.1 38.5 39.1 40.2 40.3 41.1 41.2 41.5 41.6 41.8 41.9 41.9 42.2 42.3 42.3 42.3 42.3 42.3 42.4 42.4 42.5 42.5 42.6 42.8 42.8 43 43 43.1 43.2 43.2 43.2 43.4 43.5 43.7 44.2 44.6 45 45.4 45.6 45.6 45.9 45.9 45.9 46.3 46.4 46.5 47.1 47.3 47.6 47.7 48 48.1 48.3 48.4 48.4 48.4 48.6 48.8 49.5 50.2

Current
Mean: 44.422 %
Stdev: 2.582 % (5.8%)
Runs: 41.4 41.4 41.5 41.5 41.5 41.6 41.6 41.6 41.8 42 42.3 42.3 42.3 42.4 42.4 42.4 42.4 42.5 42.5 42.6 42.6 42.6 42.8 42.8 42.9 42.9 43.1 43.1 43.3 43.6 43.7 43.7 43.7 43.8 44 44 44.2 44.3 44.8 45.1 45.8 46.1 46.3 46.4 46.4 46.6 46.7 47.1 47.1 47.2 47.3 47.7 47.8 48.4 48.8 49.4 49.5 49.8 49.9 50
Money request - Open Create Baseline
Mean: 133.980 ms
Stdev: 9.925 ms (7.4%)
Runs: 109.47595299966633 113.68046000041068 116.89603700023144 117.63692300021648 119.24385599978268 119.26245199982077 120.07747400086373 120.40649399999529 123.11307800002396 124.95178299956024 124.98311399947852 126.75537100061774 127.39868099987507 127.52050800062716 128.08435100037605 128.91133600007743 129.0895989993587 129.568074000068 129.77860500011593 129.87691199965775 129.98303200025111 130.1902270000428 130.7823080001399 131.2030840003863 132.09891800023615 132.1338299997151 132.38456199970096 133.8025309992954 133.84842999931425 133.88867199979722 134.55249099992216 135.18843599967659 135.40262900013477 135.53548100031912 135.87813299987465 136.3117269994691 136.62080899998546 136.67765299975872 136.81298900023103 138.07250999938697 138.29719999991357 138.83308899961412 139.12752300035208 140.96752900071442 142.28361000027508 142.3745929999277 143.27144399937242 143.66084800008684 144.327840000391 144.65372700057924 144.73083500005305 145.80908199958503 145.9851480005309 146.56636599916965 147.15889499988407 149.290731000714 149.30183899961412 152.4213459994644 157.6805830001831

Current
Mean: 136.713 ms
Stdev: 9.472 ms (6.9%)
Runs: 113.59350600000471 114.5637210002169 118.60237600002438 123.15376799926162 123.46732600033283 124.8456629998982 126.52787300013006 126.64013700000942 127.27079299930483 127.61311899963766 127.63964900001884 127.83015999943018 128.00248199980706 128.22399900015444 130.087443000637 130.23063200060278 130.58207200001925 131.28605100046843 131.35526600014418 131.8830570001155 133.16068500000983 133.19718399923295 133.9389240005985 134.327961999923 135.306478000246 135.51216599997133 135.7208259999752 136.16882399935275 136.48986800014973 137.2826740005985 137.45926999952644 137.5860190000385 137.8592930007726 138.20678699947894 138.43208799976856 139.23579899966717 139.90352399926633 140.2834880007431 140.95406099967659 141.08186800032854 141.26261399965733 141.32722899969667 142.00260399933904 142.67219999991357 142.7107340004295 142.98087599966675 144.01936899963766 145.15812100004405 145.35506200045347 145.6552329994738 146.39331000018865 146.70699100010097 146.8673500008881 147.26261399965733 147.28837000019848 147.48661299981177 152.94588300026953 155.73225899972022 156.5716960001737 156.84509299974889

Copy link
Contributor

@Expensify/mobile-deployers 📣 Please look into this performance regression as it's a deploy blocker.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DeployBlockerCash This issue or pull request should block deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants