Skip to content

Commit

Permalink
feat(#1): npm test
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed May 17, 2024
1 parent 8d0097f commit befcb32
Show file tree
Hide file tree
Showing 6 changed files with 3,101 additions and 75 deletions.
13 changes: 6 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ module.exports = function(grunt) {
test: {
options: {
timeout: '1200000',
require: ['test/global.js'],
files: ['test/**/*.js'],
},
},
Expand All @@ -41,9 +40,9 @@ module.exports = function(grunt) {
},
target: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js'],
},
})
grunt.loadNpmTasks('grunt-eslint')
grunt.loadNpmTasks('grunt-mocha-cli')
grunt.loadNpmTasks('grunt-contrib-clean')
grunt.registerTask('default', ['mochacli', 'eslint'])
}
});
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-mocha-cli');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.registerTask('default', ['mochacli', 'eslint']);
};
Loading

0 comments on commit befcb32

Please sign in to comment.