Missing semicolons.
This commit is contained in:
parent
5d44da0238
commit
9af81b627b
|
@ -767,14 +767,12 @@ describe("jasmine.Matchers", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should throw an exception when invoked on a non-spy', shouldThrowAnExceptionWhenInvokedOnANonSpy('wasNotCalledWith'));
|
it('should throw an exception when invoked on a non-spy', shouldThrowAnExceptionWhenInvokedOnANonSpy('wasNotCalledWith'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("all matchers", function() {
|
describe("all matchers", function() {
|
||||||
it("should return null, for futureproofing, since we might eventually allow matcher chaining", function() {
|
it("should return null, for futureproofing, since we might eventually allow matcher chaining", function() {
|
||||||
expect(match(true).toBe(true)).toBeUndefined();
|
expect(match(true).toBe(true)).toBeUndefined();
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue