Skip to content

Commit 82aa4f8

Browse files
authored
clean-up
1 parent d70dd59 commit 82aa4f8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ const server = new ParseServer({
355355
});
356356
```
357357

358-
359358
## Custom API
360359

361360
This is an example of how the API payload can be adapted in the adapter configuration `apiCallback` according to a custom email provider's API specification.

spec/ApiMailAdapter.spec.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,7 @@ describe('ApiMailAdapter', () => {
404404
});
405405

406406
describe('convert ZeptoMail API v1.1 payload', () => {
407-
408-
it('converts single recepient payload for ZeptoMail', () => {
407+
it('converts single recipient payload', () => {
409408
const payload = converter.zeptomail({ api: '1.1', payload: examplePayload});
410409
expect(payload.from.address).toEqual(examplePayload.from);
411410
expect(payload.to).toBeInstanceOf(Array);
@@ -419,7 +418,7 @@ describe('ApiMailAdapter', () => {
419418
expect(payload.htmlbody).toBe(examplePayload.html);
420419
});
421420

422-
it('converts multiple recepients payload for ZeptoMail', () => {
421+
it('converts multiple recipients payload', () => {
423422
const examplePayload = {
424423
425424

0 commit comments

Comments
 (0)