Skip to content

Commit e051ea1

Browse files
committed
chore: fix unit tests
1 parent 45f1870 commit e051ea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/services/ios/xcodebuild-args-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ function getCommonArgs() {
3333
return [
3434
"BUILD_DIR=" + path.join(projectRoot, "build"),
3535
"SHARED_PRECOMPS_DIR=" + path.join(projectRoot, 'build', 'sharedpch'),
36-
"-allowProvisioningUpdates"
3736
];
3837
}
3938

@@ -119,7 +118,8 @@ describe("xcodebuildArgsService", () => {
119118
const expectedArgs = [
120119
"archive",
121120
"-archivePath", path.join(buildOutputPath, `${projectName}.xcarchive`),
122-
"-configuration", configuration
121+
"-configuration", configuration,
122+
"-allowProvisioningUpdates"
123123
]
124124
.concat(getXcodeProjectArgs({ hasProjectWorkspace }))
125125
.concat(testCase.expectedArgs)

0 commit comments

Comments
 (0)