swh:1:snp:740441ee4139fcf046ea4d17223a047ea363cd0f
Raw File
Tip revision: 0ff9308e8ab338a6a87c723320188ad8ba5eebcc authored by Richard Smith on 30 May 2014, 19:17:35 UTC
test suite wip
Tip revision: 0ff9308
Gruntfile.js
'use strict';

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    nodeunit: {
      files: ['test/**/*_test.js'],
    },
    watch: {
      lib: {
        tasks: ['nodeunit']
      },
      test: {
        tasks: ['nodeunit']
      }
    }
  });

  // These plugins provide necessary tasks.
  grunt.loadNpmTasks('grunt-contrib-nodeunit');
  grunt.loadNpmTasks('grunt-contrib-watch');

  // Default task.
  grunt.registerTask('default', ['nodeunit']);

};
back to top