You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2015/10/13 02:41:38 UTC

ios commit: Split the npm script "jasmine" into separate lines (objc-tests and jasmine-tests)

Repository: cordova-ios
Updated Branches:
  refs/heads/master 44c1829e6 -> 02f6f9ecf


Split the npm script "jasmine" into separate lines (objc-tests and jasmine-tests)


Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/02f6f9ec
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/02f6f9ec
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/02f6f9ec

Branch: refs/heads/master
Commit: 02f6f9ecf7306a2f35bd6770128be404e29e1f96
Parents: 44c1829
Author: Shazron Abdullah <sh...@apache.org>
Authored: Mon Oct 12 17:41:36 2015 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Mon Oct 12 17:41:36 2015 -0700

----------------------------------------------------------------------
 package.json | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/02f6f9ec/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 98ce036..e413b95 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,9 @@
     ],
     "scripts": {
         "test": "npm run jshint && npm run jasmine",
-        "jasmine": "jasmine-node --captureExceptions --color tests/spec",
+        "jasmine": "npm run objc-tests && npm run jasmine-tests",
+        "objc-tests": "jasmine-node --captureExceptions --color tests/spec/cordovalib.spec.js",
+        "jasmine-tests": "jasmine-node --captureExceptions --color tests/spec/create.spec.js",
         "jshint": "node node_modules/jshint/bin/jshint bin && node node_modules/jshint/bin/jshint tests"
     },
     "author": "Apache Software Foundation",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org