我创建了这个类:
export class ErrorList {
public HostelNotFoundError(details: ErrorDetail): FunctionalError {
return new FunctionalError('1', 'Can\'t find this hostel', details);
}
并在服务中:
throw new ErrorList().HostelNotFoundError({} });
我想知道在 Jest 中是否可以执行以下操作:
rejects.toThrow(HostelNotFoundError);
慕的地10843
相关分类