We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8722364 + 1c8af5f commit 8c21260Copy full SHA for 8c21260
lib/commands/test.ts
@@ -14,6 +14,14 @@ abstract class TestCommandBase {
14
async execute(args: string[]): Promise<void> {
15
let devices = [];
16
if (this.$options.debugBrk) {
17
+ await this.$devicesService.initialize({
18
+ platform: this.platform,
19
+ deviceId: this.$options.device,
20
+ emulator: this.$options.emulator,
21
+ skipInferPlatform: !this.platform,
22
+ sdk: this.$options.sdk
23
+ });
24
+
25
const selectedDeviceForDebug = await this.$devicesService.pickSingleDevice({
26
onlyEmulators: this.$options.emulator,
27
onlyDevices: this.$options.forDevice,
0 commit comments