当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript partyType.PartyType类代码示例

本文整理汇总了TypeScript中common/partyType.PartyType的典型用法代码示例。如果您正苦于以下问题:TypeScript PartyType类的具体用法?TypeScript PartyType怎么用?TypeScript PartyType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了PartyType类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it('should accept valid type', () => {
      PartyType.all().forEach(type => {
        const errors = validator.validateSync(new PartyTypeResponse(type))

        expect(errors.length).to.equal(0)
      })
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:partyTypeResponse.ts

示例2: checkAccessGuard

function checkAccessGuard (app: any, method: string) {
  PartyType.except(PartyType.INDIVIDUAL).forEach(partyType => {
    it(`should redirect to dashboard page when defendant type is ${partyType.name.toLocaleLowerCase()}`, async () => {
      claimStoreServiceMock.resolveRetrieveClaimByExternalId({
        claim: {
          ...sampleClaimObj.claim,
          defendants: [{
            ...sampleClaimObj.claim.defendants[0],
            type: partyType.value
          }]
        }
      })
      draftStoreServiceMock.resolveFind('ccj')

      await request(app)[method](pagePath)
        .set('Cookie', `${cookieName}=ABC`)
        .expect(res => expect(res).to.be.redirect.toLocation(DashboardPaths.dashboardPage.uri))
    })
  })
}
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:20,代码来源:date-of-birth.ts

示例3: it

 it('should return undefined for unknown type', () => {
   expect(PartyType.valueOf('unknown-type')).to.be.undefined
 })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:3,代码来源:partyType.ts

示例4: expect

 PartyType.all().forEach(type => {
   expect(PartyType.valueOf(type.value)).to.be.equal(type)
 })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:3,代码来源:partyType.ts

示例5: async

  .get(Paths.claimantPartyTypeSelectionPage.uri, async (req: express.Request, res: express.Response, next: express.NextFunction) => {
    const draft: Draft<DraftClaim> = res.locals.claimDraft

    renderView(new Form(new PartyTypeResponse(draft.document.claimant.partyDetails ? PartyType.valueOf(draft.document.claimant.partyDetails.type) : undefined)), res, next)
  })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:5,代码来源:claimant-party-type-selection.ts


注:本文中的common/partyType.PartyType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。