pbxproj-dom
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "pbxproj-dom", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -66,3 +66,9 @@ var ast = require("./parser"); | ||
}); | ||
it("can upgrade signing style from manual with specific provisioning profile to automatic", function () { | ||
var xcode = xcode_1.Xcode.open("tests/signing-style/manual-with-provisioning.pbxproj"); | ||
xcode.setAutomaticSigningStyle("SampleProvProfApp", "W7TGC3P93K"); | ||
var expected = fs.readFileSync("tests/signing-style/automatic.pbxproj").toString(); | ||
chai_1.assert.equal(xcode.toString(), expected); | ||
}); | ||
}); | ||
//# sourceMappingURL=test.js.map |
@@ -88,3 +88,5 @@ var parser = require("./parser"); | ||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]": "iPhone Developer", | ||
DEVELOPMENT_TEAM: developmentTeam | ||
DEVELOPMENT_TEAM: developmentTeam, | ||
PROVISIONING_PROFILE: undefined, | ||
PROVISIONING_PROFILE_SPECIFIER: undefined | ||
} | ||
@@ -91,0 +93,0 @@ }); |
73452
1820