From 39e6f82f746f52385f9e9180871956b0883c3e0b Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Mon, 30 May 2016 14:25:55 +0300 Subject: [PATCH] Add helper scripts to help with running tests on dev machines. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 880c11957..1a1df2251 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,10 @@ }, "scripts": { "tsc-tiw": "node build/tsc-dev.js tiw", + "tsc-ti": "node build/tsc-dev.js ti", "tsc": "tsc", - "link-tests": "cd tns-core-modules && npm link && cd ../tests && npm link tns-core-modules" + "link-tests": "cd tns-core-modules && npm link && cd ../tests && npm link tns-core-modules", + "dev-tests-android": "npm run tsc-ti && tns livesync android --path tests", + "dev-tests-ios": "npm run tsc-ti && tns livesync ios --path tests" } }