添加自定义匹配器

可以使用以下语法在 jasmine 中添加自定义匹配器:

jasmine.addMatchers([
    toMatch: function () {
    return {
        compare: function (actual, expected) {
            return {
                pass: actual===expected,
                message: "Expected actual to match expected
            }
        }
    }
}
]);

现在可以通过以下方式调用此匹配器:

expected(actual).toMatch(expected);