Skip to content

Commit

Permalink
adding npm test task and create a sekeleton test
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis Kadri committed Sep 11, 2014
1 parent 974bf5d commit cc1f062
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"preferGlobal": "false",
"private": "true",
"scripts": {
"test": "jasmine-node tests/browser",
"less": "lessc -x resources/less/app.less > www/css/app.css"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions tests/browser/index-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
describe('PhoneGap Developer App', function() {

it('runs and you are not insane', function() {
expect(true).toBe(true);
});
});

0 comments on commit cc1f062

Please sign in to comment.