MindMap/frontend/node_modules/lop/test/results.test.js

9 lines
210 B
JavaScript
Raw Normal View History

var results = require("../lib/parsing-results");
exports.errorIsThrownIfCreatingFailureWithoutAnyErrors = function(test) {
test.throws(function() {
results.failure([]);
});
test.done();
};