本文整理匯總了TypeScript中test/http-mocks/claim-store.resolveRetrieveByClaimantId函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript resolveRetrieveByClaimantId函數的具體用法?TypeScript resolveRetrieveByClaimantId怎麽用?TypeScript resolveRetrieveByClaimantId使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了resolveRetrieveByClaimantId函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it(`should render dashboard: ${data.status}`, async () => {
draftStoreServiceMock.resolveFindNoDraftFound()
claimStoreServiceMock.resolveRetrieveByClaimantId(data.claim, data.claimOverride)
await request(app)
.get(Paths.dashboardPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText(...data.claimantAssertions))
})
示例2: it
it('should render page with claim number and status', async () => {
draftStoreServiceMock.resolveFindNoDraftFound()
claimStoreServiceMock.resolveRetrieveByClaimantId(claimStoreServiceMock.sampleClaimIssueObj)
await request(app)
.get(Paths.dashboardPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('000MC050', 'Your claim has been sent'))
})
示例3: it
it('should redirect to dashboard', async () => {
claimStoreServiceMock.resolveLinkDefendant()
claimStoreServiceMock.resolveRetrieveByClaimantId()
claimStoreServiceMock.resolveRetrieveByDefendantId('000MC001')
draftStoreServiceMock.resolveFindNoDraftFound()
draftStoreServiceMock.resolveFindNoDraftFound()
await request(app)
.get(AppPaths.receiver.uri)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.redirect.toLocation(DashboardPaths.dashboardPage.uri))
})