Skip to content

Commit 13b0bdb

Browse files
committed
fix: tests
1 parent f826248 commit 13b0bdb

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

lib/key-commands/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class ShiftI implements IKeyCommand {
182182
this.$projectData
183183
);
184184
const xcprojectFile = this.$xcodebuildArgsService.getXcodeProjectArgs(
185-
platformData.projectRoot,
185+
platformData,
186186
this.$projectData
187187
)[1];
188188

lib/services/plugins-service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,7 @@ This framework comes from ${dependencyName} plugin, which is installed multiple
641641
pluginData.platformsData = data.platforms;
642642
pluginData.pluginVariables = data.variables;
643643
}
644+
return pluginData;
644645
} catch (err) {
645646
this.$logger.trace(
646647
"NOTE: There appears to be a problem with this dependency:",

test/plugins-service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,7 @@ describe("Plugins service", () => {
705705
testData.isPreparePluginNativeCodeCalled = true;
706706
},
707707
},
708+
platformsData: {},
708709
normalizedPlatformName: "iOS",
709710
}),
710711
});

0 commit comments

Comments
 (0)