UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

21 lines (17 loc) 390 B
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mocha-test'); grunt.initConfig({ mochaTest: { test: { options: { globals: ['expect', 'sinon'], reporter: 'spec', quiet: false, require: './specs/chai' }, src: ['specs/**/*.js'] } } }); grunt.registerTask('default', ['mochaTest']); };