@Injectable({
providedIn: 'root'
})
export class TestService {
static testMethod(data: any, file: string) {
// do some stuff
}
}
与普通函数(不是类方法)的方法相同。
it('test', () => {
const actual = TestService.testMethod(someMockedData, someMockedFile);
expect(actual).toEqual(expected);
});