UNPKG

smil2css

Version:

SVG animation supporting IE10+ and <noscript>.

33 lines (23 loc) 442 B
module.exports = function(grunt) { grunt.initConfig( { mochaTest: { "test": { options: { bail: true, ignoreLeaks: false, reporter: "spec", require: [ function(){smil2css=require("./lib")}, function(){expect=require("chai").expect} ], ui: "bdd" }, src: ["test/*.js"] } } }); grunt.loadNpmTasks("grunt-mocha-test"); grunt.registerTask("default", ["mochaTest"]); };