Guest User

Untitled

a guest
Oct 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. module.exports = function(grunt) {
  2.  
  3. grunt.initConfig({
  4. mocha : {
  5. all : {
  6. src : 'test/**/*.js', // path to test.js files
  7. options : {
  8. globals : ['piewpiew'],
  9. ui : 'tdd',
  10. reporter : 'spec'
  11. }
  12. }
  13. }
  14. });
  15.  
  16. grunt.registerTask('default', 'mocha');
  17.  
  18. grunt.loadTasks('tasks');
  19. }
Add Comment
Please, Sign In to add comment