本文整理匯總了TypeScript中test/http-mocks/draft-store.rejectSave函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript rejectSave函數的具體用法?TypeScript rejectSave怎麽用?TypeScript rejectSave使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了rejectSave函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should return 500 and render error page when cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.resolvingThisDisputerPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例2: it
it('should render error page when unable to save draft', async () => {
draftStoreServiceMock.resolveFind('response:full-admission', draft)
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send(nextDay())
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例3: it
it('should return 500 and render error page when cannot save draft', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ type: 'individual', name: 'John Smith', address: { line1: 'Apartment 99', line2: '', line3: '', city: 'London', postcode: 'E10AA' } })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例4: it
it('should return 500 and render error page when form is valid and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ option: YesNoOption.YES.option })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例5: it
it('should return 500 and render error page when form is valid and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim', { defendant: undefined })
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.defendantPartyTypeSelectionPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.send({ type: 'individual' })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例6: it
it('should return 500 and render error page when form is valid and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.reasonPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.send({ reason: 'Roof started leaking soon after...' })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例7: it
it('should return 500 and render error page when form is valid and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.claimantDateOfBirthPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.send({ known: 'true', date: { day: '31', month: '12', year: '1980' } })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例8: it
it('should return 500 and render error page when cannot save draft', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ known: 'true', date: { year: '1978', month: '1', day: '11' } })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例9: it
it('should return 500 and render error page when form is valid and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.defendantEmailPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.send({ address: 'defendant@example.com' })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
示例10: it
it('should return 500 and render error page when form is valid, amount within limit and cannot save draft', async () => {
draftStoreServiceMock.resolveFind('claim')
draftStoreServiceMock.rejectSave()
await request(app)
.post(ClaimPaths.amountPage.uri)
.set('Cookie', `${cookieName}=ABC`)
.send({ rows: [{ reason: 'Damaged roof', amount: '299' }] })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})