Advertisement
Guest User

Untitled

a guest
Jul 6th, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.90 KB | None | 0 0
  1. jim@linwst430:~/projects/sites/blog/backend$ npm run deploy
  2.  
  3. > woowieServer@0.0.1 deploy /home/jim/projects/sites/blog/backend
  4. > grunt && node woowieServer.js
  5.  
  6. Running "jshint:gruntfile" (jshint) task
  7.  
  8. ✔ No problems
  9.  
  10.  
  11. Running "jshint:lib" (jshint) task
  12.  
  13. ✔ No problems
  14.  
  15.  
  16. Running "jshint:test" (jshint) task
  17.  
  18. ✔ No problems
  19.  
  20.  
  21. Running "nodeunit:files" (nodeunit) task
  22. Testing woowie_test.js.OK
  23. >> 1 assertions passed (7ms)
  24.  
  25. Running "mochaTest:test" (mochaTest) task
  26.  
  27.  
  28.   Testing Database ...
  29.     testing basic commands ...
  30.       ✓ should be able to remove documents
  31.       ✓ should be able to save new documents
  32.       ✓ should be able to save another one
  33.       ✓ should be able to create new documents
  34.       ✓ should be able to count all documents
  35.       ✓ document count should be equal to three
  36.       ✓ should be able to remove one document
  37.  
  38.   Testing REST services ...
  39.     ### service: /get/articles
  40. Woowie Blog Backend listening at http://0.0.0.0:58000
  41. Database Client connected
  42.       ✓ should be up, and running (200 OK)
  43.       ✓ should return at least 1 (initial) result
  44.     ### service: /count/articles
  45.       ✓ should be up, and running (200 OK)
  46.       ✓ should return the number of articles
  47.       ✓ should return an object
  48.       ✓ should return a >=0 value
  49.  
  50.  
  51.   13 passing (114ms)
  52.  
  53.  
  54. Running "jsdoc:docgen" (jsdoc) task
  55. Documentation generated to /home/jim/projects/sites/blog/backend/doc
  56. Done, without errors.
  57.  
  58.  
  59. Execution Time (2014-07-06 10:32:17 UTC)
  60. loading tasks   400ms  ▇▇▇▇▇▇ 7%
  61. mochaTest:test  471ms  ▇▇▇▇▇▇ 8%
  62. jsdoc:docgen     4.7s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 82%
  63. Total 5.7s
  64.  
  65. Woowie Blog Backend listening at http://0.0.0.0:58000
  66. Database Client connected
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement