Skip to content

Commit e604112

Browse files
authored
feat: Add reference browser support to the firefox-android extension runner (#1870) (#1871)
1 parent 4af120f commit e604112

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/util/adb.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ export default class ADBUtils {
120120
line.startsWith('org.mozilla.fennec') ||
121121
line.startsWith('org.mozilla.fenix') ||
122122
line.startsWith('org.mozilla.geckoview') ||
123-
line.startsWith('org.mozilla.firefox')
123+
line.startsWith('org.mozilla.firefox') ||
124+
line.startsWith('org.mozilla.reference.browser')
124125
);
125126
});
126127
}

tests/unit/test-extension-runners/test.firefox-android.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ function prepareSelectedDeviceAndAPKParams(
114114
discoverInstalledFirefoxAPKs: sinon.spy(() => Promise.resolve([
115115
'org.mozilla.fennec', 'org.mozilla.firefox',
116116
'org.mozilla.fenix', 'org.mozilla.fenix.nightly',
117+
'org.mozilla.reference.browser',
117118
])),
118119
getAndroidVersionNumber: sinon.spy(() => Promise.resolve(20)),
119120
amForceStopAPK: sinon.spy(() => Promise.resolve()),

0 commit comments

Comments
 (0)