當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript claim-store.rejectRetrieveClaimByExternalId函數代碼示例

本文整理匯總了TypeScript中test/http-mocks/claim-store.rejectRetrieveClaimByExternalId函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript rejectRetrieveClaimByExternalId函數的具體用法?TypeScript rejectRetrieveClaimByExternalId怎麽用?TypeScript rejectRetrieveClaimByExternalId使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了rejectRetrieveClaimByExternalId函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('should return 500 and render error page when cannot retrieve claim', async () => {
   claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')
   await request(app)
     .get(pagePath)
     .set('Cookie', `${cookieName}=ABC`)
     .expect(res => expect(res).to.be.serverError.withText('Error'))
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:7,代碼來源:repayment-plan-summary.ts

示例2: it

        it('should return error page when unable to retrieve claim', async () => {
          claimStoreServiceMock.rejectRetrieveClaimByExternalId('Error')

          await request(app)
            .post(severeDisabilityPage)
            .set('Cookie', `${cookieName}=ABC`)
            .expect(res => expect(res).to.be.serverError.withText('Error'))
        })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:8,代碼來源:severe-disability.ts

示例3: it

      it('should return 500 and render error page when cannot retrieve claim by external id', async () => {
        rejectRetrieveClaimByExternalId('HTTP error')

        await request(app)
          .get(path.evaluateUri({ externalId: externalId }))
          .set('Cookie', `${cookieName}=ABC`)
          .expect(res => expect(res).to.be.serverError.withText('Error'))
      })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:8,代碼來源:sealed-claim.ts

示例4: it

      it('should return 500 and render error page when cannot retrieve claim', async () => {
        claimStoreServiceMock.rejectRetrieveClaimByExternalId('Internal service error when retrieving response')

        await request(app)
          .get(ResponsePaths.summaryPage.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId }))
          .set('Cookie', `${cookieName}=ABC`)
          .expect(res => expect(res).to.be.serverError.withText('Error'))
      })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:8,代碼來源:summary.ts

示例5: it

          it('should return 500 when "yes" is selected and cannot retrieve claim', async () => {
            claimStoreServiceMock.rejectRetrieveClaimByExternalId('internal server error when retrieving claim')

            await request(app)
              .post(pagePath)
              .set('Cookie', `${cookieName}=ABC`)
              .send({ option: 'yes' })
              .expect(res => expect(res).to.be.serverError.withText('Error'))
          })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:more-time-request.ts

示例6: it

        it('should return 500 when cannot retrieve claim by external id', async () => {
          claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')

          await request(app)
            .post(pagePath)
            .set('Cookie', `${cookieName}=ABC`)
            .send({ option: FormaliseRepaymentPlanOption.SIGN_SETTLEMENT_AGREEMENT.value })
            .expect(res => expect(res).to.be.serverError.withText('Error'))
        })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:choose-how-to-proceed.ts

示例7: it

          it('should return 500 when cannot retrieve claim by external id', async () => {
            claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')

            await request(app)
              .post(pagePath)
              .set('Cookie', `${cookieName}=ABC`)
              .send({ viewedDefendantResponse: true })
              .expect(res => expect(res).to.be.serverError.withText('Error'))
          })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:defendants-response.ts

示例8: it

          it('should return 500 when cannot retrieve claim by external id', async () => {
            claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')

            await request(app)
              .post(offerPage)
              .set('Cookie', `${cookieName}=ABC`)
              .send(validFormData)
              .expect(res => expect(res).to.be.serverError.withText('Error'))
          })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:your-offer.ts

示例9: it

          it('should return 500 and render error page when form is valid and cannot retrieve claim', async () => {
            claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')

            await request(app)
              .post(pagePath)
              .set('Cookie', `${cookieName}=ABC`)
              .send({ signed: 'true', type: SignatureType.BASIC })
              .expect(res => expect(res).to.be.serverError.withText('Error'))
          })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:check-and-send.ts

示例10: it

            it('should return 500 and render error page when cannot retrieve claim', async () => {
              idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
              checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
              claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')

              await request(app)
                .post(pagePath)
                .set('Cookie', `${cookieName}=ABC`)
                .expect(res => expect(res).to.be.serverError.withText('Error'))
            })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:10,代碼來源:mediation-agreement.ts


注:本文中的test/http-mocks/claim-store.rejectRetrieveClaimByExternalId函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。