@@ -773,7 +773,7 @@ describe("iOS Project Service Signing", () => {
773
773
describe ( "Check for Changes" , ( ) => {
774
774
it ( "sets signingChanged if no Xcode project exists" , async ( ) => {
775
775
const changes = < IProjectChangesInfo > { } ;
776
- await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined } , projectData ) ;
776
+ await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined , useHotModuleReload : false } , projectData ) ;
777
777
assert . isTrue ( ! ! changes . signingChanged ) ;
778
778
} ) ;
779
779
it ( "sets signingChanged if the Xcode projects is configured with Automatic signing, but proivsion is specified" , async ( ) => {
@@ -787,7 +787,7 @@ describe("iOS Project Service Signing", () => {
787
787
} ;
788
788
} ;
789
789
const changes = < IProjectChangesInfo > { } ;
790
- await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined } , projectData ) ;
790
+ await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined , useHotModuleReload : false } , projectData ) ;
791
791
assert . isTrue ( ! ! changes . signingChanged ) ;
792
792
} ) ;
793
793
it ( "sets signingChanged if the Xcode projects is configured with Manual signing, but the proivsion specified differs the selected in the pbxproj" , async ( ) => {
@@ -806,7 +806,7 @@ describe("iOS Project Service Signing", () => {
806
806
} ;
807
807
} ;
808
808
const changes = < IProjectChangesInfo > { } ;
809
- await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined } , projectData ) ;
809
+ await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined , useHotModuleReload : false } , projectData ) ;
810
810
assert . isTrue ( ! ! changes . signingChanged ) ;
811
811
} ) ;
812
812
it ( "does not set signingChanged if the Xcode projects is configured with Manual signing and proivsion matches" , async ( ) => {
@@ -825,7 +825,7 @@ describe("iOS Project Service Signing", () => {
825
825
} ;
826
826
} ;
827
827
const changes = < IProjectChangesInfo > { } ;
828
- await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined } , projectData ) ;
828
+ await iOSProjectService . checkForChanges ( changes , { bundle : false , release : false , provision : "NativeScriptDev" , teamId : undefined , useHotModuleReload : false } , projectData ) ;
829
829
assert . isFalse ( ! ! changes . signingChanged ) ;
830
830
} ) ;
831
831
} ) ;
0 commit comments