Merge branch 'matcher-integration-tests'

This commit is contained in:
Steve Gravrock
2020-02-06 18:16:06 -08:00
7 changed files with 322 additions and 17 deletions

View File

@@ -725,7 +725,7 @@ describe("matchersUtil", function() {
it("uses custom equality testers if passed in and actual is an Array", function() {
var customTester = function(a, b) {return true;};
expect(jasmineUnderTest.matchersUtil.contains([1, 2], 2, [customTester])).toBe(true);
expect(jasmineUnderTest.matchersUtil.contains([1, 2], 3, [customTester])).toBe(true);
});
it("fails when actual is undefined", function() {