riya_business_travel_8.0.0_.../public/test/mocks/angular.ts
venbatechnologies@gmail.com 565484c22d Modified initial commit
2021-07-05 14:17:23 +05:30

18 lines
278 B
TypeScript

export default class AngularJSMock {
service: any;
controller: any;
directive: any;
constructor() {
this.service = jest.fn();
this.controller = jest.fn();
this.directive = jest.fn();
}
module() {
return this;
}
}
module.exports = AngularJSMock;