blob: 0868dd90a0fd8b1becc376cc9aa72bf9a5fb2675 (
plain)
1
2
3
4
5
6
7
8
|
import * as something from './something';
fdescribe('something', () => {
it('does not call someFunction', () => {
spyOn(something, 'someFunction').and.callFake(() => console.log('someFunction was not called! yay!'));
something.otherFunction();
});
});
|