rebuilt tests using tape, prova.

This commit is contained in:
Dylan Greene
2014-12-19 12:56:24 -05:00
parent 95de8eb395
commit d0935730b8
17 changed files with 597 additions and 495 deletions

View File

@@ -15,15 +15,6 @@ module.exports = function(grunt) {
require('time-grunt')(grunt);
grunt.initConfig({
mochaTest: {
notify: {
src: 'test/**/*.test.js',
options: {
reporter: 'spec'
}
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
@@ -39,17 +30,17 @@ module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.registerTask('test', [
'jshint',
'mochaTest'
grunt.registerTask('lint', [
'jshint'
]);
grunt.registerTask('default', [
'test'
'lint'
]);
grunt.registerTask('pre-publish', [
'test',
'lint',
'repos',
'readme'
]);
};