File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,8 @@ def test_010_test_mocha_android_emulator(self):
41
41
Tns .platform_add_android (attributes = {"--path" : self .app_name , "--frameworkPath" : ANDROID_RUNTIME_PATH })
42
42
Tns .run_tns_command ("test init" , attributes = {"--framework" : "mocha" , "--path" : self .app_name })
43
43
44
- # Hack to workaround https://github.com/NativeScript/nativescript-cli/issues/2212
44
+ # Hack to workaround https://github.com/NativeScript/nativescript-cli/issues/2283
45
45
Npm .install (package = 'mocha' , folder = self .app_name , option = '--save-dev' )
46
- Npm .install (package = 'chai' , folder = self .app_name , option = '--save-dev' )
47
46
48
47
# --timeout is hack to workaround https://github.com/NativeScript/karma-nativescript-launcher/issues/26
49
48
# Please remove --timeout after issue is fixed.
Original file line number Diff line number Diff line change 8
8
from core .base_class .BaseClass import BaseClass
9
9
from core .device .emulator import Emulator
10
10
from core .device .simulator import Simulator
11
- from core .npm .npm import Npm
12
- from core .osutils .command import run
13
11
from core .osutils .folder import Folder
14
- from core .settings .settings import IOS_RUNTIME_PATH , SIMULATOR_NAME , TEST_RUN_HOME
12
+ from core .settings .settings import IOS_RUNTIME_PATH , SIMULATOR_NAME
15
13
from core .settings .strings import *
16
14
from core .tns .tns import Tns
17
15
@@ -42,9 +40,6 @@ def test_010_test_jasmine_ios_simulator(self):
42
40
Tns .platform_add_ios (attributes = {"--path" : self .app_name , "--frameworkPath" : IOS_RUNTIME_PATH })
43
41
Tns .run_tns_command ("test init" , attributes = {"--framework" : "jasmine" , "--path" : self .app_name })
44
42
45
- # Hack to workaround https://github.com/NativeScript/nativescript-cli/issues/2212
46
- Npm .install (package = 'jasmine-core' , folder = self .app_name , option = '--save-dev' )
47
-
48
43
# `timeout=130` is hack to workaround https://github.com/NativeScript/karma-nativescript-launcher/issues/26
49
44
# Please remove `timeout=130` after issue is fixed.
50
45
output = Tns .run_tns_command ("test ios" , attributes = {"--emulator" : "" ,
You can’t perform that action at this time.
0 commit comments