本文整理匯總了TypeScript中app/entities/label/label.service.LabelService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.LabelService類的具體用法?TypeScript service.LabelService怎麽用?TypeScript service.LabelService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了service.LabelService類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should delete a Label', async () => {
const rxPromise = service.delete(123).subscribe(resp => (expectedResult = resp.ok));
const req = httpMock.expectOne({ method: 'DELETE' });
req.flush({ status: 200 });
expect(expectedResult);
});
示例2: it
it('should delete a Label', () => {
service.delete(123).subscribe(received => {
expect(received.url).toContain('/' + 123);
});
const req = httpMock.expectOne({ method: 'DELETE' });
req.flush(null);
});
示例3: it
it('should find an element', async () => {
const returnedFromService = Object.assign({}, elemDefault);
service
.find(123)
.pipe(take(1))
.subscribe(resp => expect(resp).toMatchObject({ body: elemDefault }));
const req = httpMock.expectOne({ method: 'GET' });
req.flush(JSON.stringify(returnedFromService));
});