From 8454ca942936467850cbec5b83e4915a86c96716 Mon Sep 17 00:00:00 2001 From: Rossen Hristov Date: Wed, 8 Jun 2016 11:20:05 +0300 Subject: [PATCH] Separate Android and iOS tests --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c69b1af0d..dc24f9562 100644 --- a/package.json +++ b/package.json @@ -38,6 +38,8 @@ "test-watch-android": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync android --path tests --watch\"", "test-watch-ios": "npm run pretest && concurrently --kill-others \"npm run tsc-tiw\" \"tns livesync ios --path tests --watch\"", "pretest": "npm run link-tests && npm run tsc", - "test": "tns run android --path tests --justlaunch && tns run ios --path tests --justlaunch" + "test-android": "tns run android --path tests --justlaunch", + "test-ios": "tns run ios --path tests --justlaunch", + "test": "npm run test-android && npm run test-ios" } }