mirror of
https://github.com/jwadhams/json-logic-js.git
synced 2026-01-18 16:14:04 +00:00
18 lines
302 B
JavaScript
18 lines
302 B
JavaScript
var testrunner = require("qunit");
|
|
|
|
testrunner.setup({
|
|
log: {
|
|
summary: true,
|
|
errors: true
|
|
}
|
|
});
|
|
|
|
// specify dependency
|
|
testrunner.run({
|
|
code: "../dist/json-logic.js",
|
|
tests: "tests.js"
|
|
}, function(err, report) {
|
|
if(err) console.dir(err);
|
|
// console.dir(report);
|
|
});
|