We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359059b commit 3e053c7Copy full SHA for 3e053c7
lib/services/test-execution-service.ts
@@ -124,7 +124,12 @@ export class TestExecutionService implements ITestExecutionService {
124
await this.$liveSyncService.liveSync(deviceDescriptors, liveSyncInfo);
125
};
126
127
- karmaRunner.on("message", (karmaData: any) => {
+ karmaRunner.on("message", (karmaData: any) => {
128
+ this.$logger.trace(`The received message from karma is: `, karmaData);
129
+ if (!karmaData.launcherConfig && !karmaData.url) {
130
+ return;
131
+ }
132
+
133
launchKarmaTests(karmaData)
134
.catch((result) => {
135
this.$logger.error(result);
0 commit comments