Files
jasmine/spec/core/matchers/NullDiffBuilderSpec.js
2025-09-27 13:21:09 -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');
privateUnderTest.NullDiffBuilder().withPath('does not matter', spy);
expect(spy).toHaveBeenCalled();
});
});