xml.js
Version:
XML.js provides helper functions for XML manipulation, including conversion of documents into [JXON](https://developer.mozilla.org/en-US/docs/JXON) objects. It is built on top of [xmldom](https://www.npmjs.org/package/xmldom) & [xpath](https://www.npmjs.o
23 lines (19 loc) • 330 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
mochaTest: {
options: {
reporter: "spec"
},
test: {
src: ["test/**/*Suite.js"]
}
}
});
var modules = [
"grunt-mocha-test"
];
modules.forEach(function(module) {
grunt.loadNpmTasks(module);
});
grunt.registerTask("test", ["mochaTest"]);
};