@@ -21,7 +21,7 @@ def test_100_plugin_add_multiple_pods(self):
21
21
Tns .create_app (self .app_name )
22
22
Tns .platform_add_ios (attributes = {"--path" : self .app_name , "--frameworkPath" : IOS_RUNTIME_PATH })
23
23
24
- plugin_path = SUT_FOLDER + "/QA-TestApps /CocoaPods/carousel"
24
+ plugin_path = SUT_FOLDER + "/data /CocoaPods/carousel"
25
25
output = Tns .plugin_add (plugin_path , attributes = {"--path" : self .app_name }, assert_success = False )
26
26
assert "Successfully installed plugin carousel." in output
27
27
assert File .exists (self .app_name + "/node_modules/carousel/package.json" )
@@ -30,7 +30,7 @@ def test_100_plugin_add_multiple_pods(self):
30
30
output = File .read (self .app_name + "/package.json" )
31
31
assert "carousel" in output
32
32
33
- plugin_path = SUT_FOLDER + "/QA-TestApps /CocoaPods/keychain"
33
+ plugin_path = SUT_FOLDER + "/data /CocoaPods/keychain"
34
34
output = Tns .plugin_add (plugin_path , attributes = {"--path" : self .app_name }, assert_success = False )
35
35
assert "Successfully installed plugin keychain." in output
36
36
assert File .exists (self .app_name + "/node_modules/keychain/package.json" )
@@ -60,7 +60,7 @@ def test_100_plugin_add_multiple_pods(self):
60
60
def test_201_plugin_add_pod_google_maps_before_platform_add_ios (self ):
61
61
Tns .create_app (self .app_name )
62
62
63
- plugin_path = SUT_FOLDER + "/QA-TestApps /CocoaPods/googlesdk"
63
+ plugin_path = SUT_FOLDER + "/data /CocoaPods/googlesdk"
64
64
output = Tns .plugin_add (plugin_path , attributes = {"--path" : self .app_name }, assert_success = False )
65
65
assert "Successfully installed plugin googlesdk." in output
66
66
assert File .exists (self .app_name + "/node_modules/googlesdk/package.json" )
@@ -99,7 +99,7 @@ def test_202_plugin_add_pod_google_maps_after_platform_add_ios(self):
99
99
Tns .create_app (self .app_name )
100
100
Tns .platform_add_ios (attributes = {"--path" : self .app_name , "--frameworkPath" : IOS_RUNTIME_PATH })
101
101
102
- plugin_path = SUT_FOLDER + "/QA-TestApps /CocoaPods/googlesdk"
102
+ plugin_path = SUT_FOLDER + "/data /CocoaPods/googlesdk"
103
103
output = Tns .plugin_add (plugin_path , attributes = {"--path" : self .app_name }, assert_success = False )
104
104
assert "Successfully installed plugin googlesdk." in output
105
105
assert File .exists (self .app_name + "/node_modules/googlesdk/package.json" )
@@ -136,7 +136,7 @@ def test_401_plugin_add_invalid_pod(self):
136
136
Tns .create_app (self .app_name )
137
137
Tns .platform_add_ios (attributes = {"--path" : self .app_name , "--frameworkPath" : IOS_RUNTIME_PATH })
138
138
139
- plugin_path = SUT_FOLDER + "/QA-TestApps /CocoaPods/invalidpod"
139
+ plugin_path = SUT_FOLDER + "/data /CocoaPods/invalidpod"
140
140
output = Tns .plugin_add (plugin_path , attributes = {"--path" : self .app_name }, assert_success = False )
141
141
assert "Successfully installed plugin invalidpod." in output
142
142
assert File .exists (self .app_name + "/node_modules/invalidpod/package.json" )
0 commit comments