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
this.$errors.failWithoutHelp(`The specified plugin ${plugin} is not a valid NativeScript plugin. Ensure that the plugin contains nativescript key in package.json file and try again.`);
31
+
this.$errors.failWithoutHelp(`${plugin} is not a valid NativeScript plugin. Verify that the plugin package.json file contains a nativescript key and try again.`);
this.$logger.warn(`Plugin ${pluginData.name}with specified version ${pluginVersion} for ${platform}platform is not compatible for currently installed framework with version ${installedFrameworkVersion}.`);
64
+
this.$logger.warn(`${pluginData.name}${pluginVersion} for ${platform} is not compatible with the currently installed framework version ${installedFrameworkVersion}.`);
addPluginWhenExpectingToFail(testInjector,null,"You must specify plugin name.");
134
134
});
135
135
it("fails when invalid nativescript plugin name is specified",()=>{
136
-
addPluginWhenExpectingToFail(testInjector,"lodash","The specified plugin lodash is not a valid NativeScript plugin. Ensure that the plugin contains nativescript key in package.json file and try again.");
136
+
addPluginWhenExpectingToFail(testInjector,"lodash","lodash is not a valid NativeScript plugin. Verify that the plugin package.json file contains a nativescript key and try again.");
137
137
});
138
138
it("fails when the plugin is already installed",()=>{
it("fails when the plugin does not support the installed framework",()=>{
164
164
letisWarningMessageShown=false;
165
-
letexpectedWarningMessage="Plugin mySamplePlugin with specified version 1.0.1 for android platform is not compatible for currently installed framework with version 1.0.0.";
165
+
letexpectedWarningMessage="mySamplePlugin 1.0.1 for android is not compatible with the currently installed framework version 1.0.0.";
0 commit comments