Files
jasmine/spec/core/matchers/NullDiffBuilderSpec.js
2022-04-16 13:41:44 -07:00

8 lines
282 B
JavaScript

describe('NullDiffBuilder', function() {
it('responds to withPath() by calling the passed function', function() {
const spy = jasmine.createSpy('callback');
jasmineUnderTest.NullDiffBuilder().withPath('does not matter', spy);
expect(spy).toHaveBeenCalled();
});
});