2020-09-16 14:23:28 +02:00

8 lines
141 B
JavaScript

"use strict";
module.exports = function (t, a) {
var e = new Error();
a(t(e), e, "Error");
a.throws(function () { t({}); }, "Other");
};