You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticPLUGIN_NOT_INCLUDED_IN_PREVIEW_APP="Plugin %s is not included in preview app on device %s and will not work.";
18
+
publicstaticPLUGIN_WITH_LOWER_VERSION_IN_PREVIEW_APP="Plugin %s has local version %s but preview app on device %s has version %s. Some functionalities may not work.";
this.$logger.warn(`Plugin ${localPlugin} has local version ${localPluginVersion} but preview app has version ${devicePluginVersion}. Some functionalities may not work.`);
Copy file name to clipboardExpand all lines: test/services/playground/preview-app-livesync-service.ts
+40-28Lines changed: 40 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ interface IActOptions {
21
21
22
22
interfaceIAssertOptions{
23
23
checkWarnings?: boolean;
24
-
checkQrCode?: boolean;
24
+
isComparePluginsOnDeviceCalled?: boolean;
25
25
}
26
26
27
27
interfaceIActInput{
@@ -31,16 +31,20 @@ interface IActInput {
31
31
actOptions?: IActOptions;
32
32
}
33
33
34
-
letisGenerateQrCodeForCurrentAppCalled=false;
34
+
letisComparePluginsOnDeviceCalled=false;
35
35
letapplyChangesParams: FilePayload[]=[];
36
36
letreadTextParams: string[]=[];
37
37
letwarnParams: string[]=[];
38
38
constnativeFilesWarning="Unable to apply changes from App_Resources folder. You need to build your application in order to make changes in App_Resources folder.";
0 commit comments