Skip to content

Commit

Permalink
feat: Add reference browser support to the firefox-android extension …
Browse files Browse the repository at this point in the history
…runner (#1870) (#1871)
  • Loading branch information
jonalmeida authored Apr 22, 2020
1 parent 4af120f commit e604112
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util/adb.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ export default class ADBUtils {
line.startsWith('org.mozilla.fennec') ||
line.startsWith('org.mozilla.fenix') ||
line.startsWith('org.mozilla.geckoview') ||
line.startsWith('org.mozilla.firefox')
line.startsWith('org.mozilla.firefox') ||
line.startsWith('org.mozilla.reference.browser')
);
});
}
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test-extension-runners/test.firefox-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ function prepareSelectedDeviceAndAPKParams(
discoverInstalledFirefoxAPKs: sinon.spy(() => Promise.resolve([
'org.mozilla.fennec', 'org.mozilla.firefox',
'org.mozilla.fenix', 'org.mozilla.fenix.nightly',
'org.mozilla.reference.browser',
])),
getAndroidVersionNumber: sinon.spy(() => Promise.resolve(20)),
amForceStopAPK: sinon.spy(() => Promise.resolve()),
Expand Down

0 comments on commit e604112

Please sign in to comment.