We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7bf25a commit ebc0349Copy full SHA for ebc0349
test/project-service.ts
@@ -151,7 +151,12 @@ describe("Project Service Tests", () => {
151
projectIntegrationTest.createProject(projectName).wait();
152
projectIntegrationTest.assertProject(tempFolder, projectName, options.appid).wait();
153
});
154
- it("creates valid project and tests pod sandbox", () => {
+ it("creates ios project and tests post-install sandboxing of CocoaPods setup", () => {
155
+ if (require("os").platform() !== "darwin") {
156
+ console.log("Skipping CocoaPods sandbox test. It works only on darwin.");
157
+ return;
158
+ }
159
+
160
let testInjector = createTestInjector();
161
let fs: IFileSystem = testInjector.resolve("fs");
162
let config = testInjector.resolve("config");
0 commit comments