- 02 Apr, 2020 10 commits
-
-
Gregory Mierzwinski authored
* Add google-search-restaurants to pageload tests in browsertime. * Temporarily change the activity to pass tests. * Change Raptor Fenix activity name. * Remove test trigger for browsertime test.
-
MickeyMoz authored
-
Michael Comella authored
It was only used for 3 checks so it's not worth having a dependency on it.
-
Michael Comella authored
It would be used for on device tests but it doesn't seem to hooked up currently.
-
MickeyMoz authored
-
Mozilla L10n Automation Bot authored
-
mcarare authored
-
mcarare authored
-
Emily Kager authored
Co-authored-by:
Tiger Oakes <toakes@mozilla.com>
-
Sebastian Kaspari authored
-
- 01 Apr, 2020 19 commits
-
-
Aaron Train authored
fix: flank_snapshot requires direct shard value -1 shards -> 50 shards fix: adjust flank-x86.yml shard value try old results generator in flank-x86.yml fix: legacy-junit-report -> legacy-junit-result revert to modern reporting
-
David Walsh authored
-
Emily Kager authored
Changelog: https://arturbosch.github.io/detekt/changelog.html Fixes #7360. Also use more exact test glob. Co-authored-by:
Andrew Gaul <andrew@gaul.org>
-
Mihai Adrian authored
* For #9336 Check current destination before navigating * For #9336 Update unit test to check for navigateSafe
-
Mihai Adrian authored
* For #9423: Align preference title and summary to viewStart * Update checkbox_left_preference_etp.xml Co-authored-by:
Jeff Boek <jeff@jeffboek.com>
-
ekager authored
-
Grisha Kruglov authored
-
ekager authored
-
mcarare authored
-
mcarare authored
-
Kate Glazko authored
-
Sawyer Blatz authored
-
codrut.topliceanu authored
-
mcarare authored
-
ekager authored
-
Johan Lorenzo authored
-
Mihai Branescu authored
-
Kate Glazko authored
-
Mozilla L10n Automation Bot authored
-
- 31 Mar, 2020 11 commits
-
-
Grisha Kruglov authored
AccountObserver listeners were being triggered correctly, however, during every time we open HomeFragment, home menu gets re-created, which causes us to re-run the initialization block. Before this patch, the init block would never touch the account manager. After this patch, it will query it if account manager has already been initialized.
-
Grisha Kruglov authored
`init` blocks are executed before `val` initialization which is declared afterwards in the class. In this case, we had `quitItem` and `reconnectToSyncItem` as lazy, but declared after the `init` block which may need them. And so, while this compiles just fine, in practice we run into an NPE as the `init` block tries to get the lazy's value. Simply re-ordering initialization fixes the problem.
-
Arturo Mejia authored
-
Sawyer Blatz authored
-
Oana Horvath authored
Updated the method to verify system notifications and added new tests for media notifications (#9330)
-
ValentinTimisica authored
* For #8412: Passes error handling function to 'CustomTabWindowFeature' Change required for showing error message when the app can't handle a specific scheme. Implemented in AC: https://github.com/mozilla-mobile/android-components/pull/6122 * Upgrade AC version Co-authored-by:
Sawyer Blatz <sdblatz@gmail.com>
-
Grisha Kruglov authored
-
Mozilla L10n Automation Bot authored
-
Grisha Kruglov authored
In order to hide the time it takes for the account manager to be initialized (which always involves disk IO, and often network IO), let's kick it off after "visual completeness". This makes sure that for most users, by the time they interact with the account manager-related functionality (e.g. in Settings), it's ready to go. Also, for signed-in users, this will establish background sync workers.
-
Grisha Kruglov authored
This refactor "reverses" relationship between these two classes, allowing HomeMenu to inform its parent, HomeFragment, of any changes to the menu. Once that's in place, we start observing account manager changes (once its ready) for account problems. This solves two problems: - initialization of the account manager is no longer necessary to build a home menu - home menu now starts observing changes to the account manager's state (before it was static)
-
Grisha Kruglov authored
-