UNPKG

mydomoathome

Version:

Imperihome ISS API gateway to Domoticz

29 lines (26 loc) 582 B
'use strict'; require('xunit-file'); module.exports = function (grunt) { grunt.initConfig({ express: { test: { options: { script: 'mdah.js' } } }, simplemocha: { options: { globals: ['should'], timeout: 30000, ignoreLeaks: false, ui: 'bdd', reporter: 'xunit-file' }, all: {src: ['./test/*.js']} } }); grunt.loadNpmTasks('grunt-express-server'); grunt.loadNpmTasks('grunt-simple-mocha'); grunt.registerTask('default', ['express:test', 'simplemocha:all']); };