Skip to content

Commit

Permalink
Update test.firefox-android.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalprabhu authored Oct 9, 2020
1 parent ae36534 commit 2d5cc48
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions tests/unit/test-extension-runners/test.firefox-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,27 +1029,6 @@ describe('util/extension-runners/firefox-android', () => {
consoleStream.stopCapturing();
});

it(
'does tell user to enable Remote Debugging when running Fenix',
async () => {
const {params, fakeADBUtils} = prepareSelectedDeviceAndAPKParams();
params.firefoxApk = 'org.mozilla.fenix.nightly';
fakeADBUtils.getAndroidVersionNumber = async () => 23;

consoleStream.startCapturing();
const runner = new FirefoxAndroidExtensionRunner(params);
await runner.run();

assert.match(
consoleStream.capturedMessages.join('\n'),
/Make sure to enable "Remote Debugging via USB"/
);

consoleStream.flushCapturedLogs();
consoleStream.stopCapturing();
}
);

});

});

0 comments on commit 2d5cc48

Please sign in to comment.