Github user audreyso commented on a diff in the pull request: https://github.com/apache/cordova-lib/pull/510#discussion_r93502548 --- Diff: cordova-lib/spec-plugman/platforms/ios.spec.js --- @@ -301,14 +301,8 @@ describe('ios project handler', function() { }); }); it('of two plugins should apply xcode file changes from both', function(){ --- End diff -- @stevengill Does the order of the test matter? If I test this way, the test passes just fine. ``` it('of two plugins should apply xcode file changes from both', function(done){ return install('ios', temp, weblessplugin) .then(function (result) { var xcode = ios.parseProjectFile(temp).xcode; // from org.test.plugins.weblessplugin expect(xcode.hasFile(slashJoin('Resources', 'WeblessPluginViewController.xib'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.weblessplugin','WeblessPluginCommand.h'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.weblessplugin','WeblessPluginCommand.m'))).toBeTruthy(); expect(xcode.hasFile('usr/lib/libsqlite3.dylib')).toBeTruthy(); done(); }).then(function () { return install('ios', temp, dummyplugin) }).then(function () { var xcode = ios.parseProjectFile(temp).xcode; // from org.test.plugins.dummyplugin expect(xcode.hasFile(slashJoin('Resources', 'DummyPlugin.bundle'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.dummyplugin', 'DummyPluginCommand.h'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.dummyplugin', 'DummyPluginCommand.m'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.dummyplugin','targetDir','TargetDirTest.h'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('Plugins','org.test.plugins.dummyplugin','targetDir','TargetDirTest.m'))).toBeTruthy(); expect(xcode.hasFile(slashJoin('SampleApp','Plugins','org.test.plugins.dummyplugin','Custom.framework'))).toBeTruthy(); done(); }); }, 60000); }); ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org For additional commands, e-mail: dev-h...@cordova.apache.org