Revert resolves/rejects changes in email unit test.

This commit is contained in:
Tankred Hase 2017-08-16 17:57:33 +08:00
parent 1557a5f925
commit 3dfa447fcf

View File

@ -61,7 +61,7 @@ describe('Email Unit Tests', () => {
describe("send", () => { describe("send", () => {
beforeEach(() => { beforeEach(() => {
sandbox.stub(email, '_sendHelper').resolves({response: '250'}); sandbox.stub(email, '_sendHelper').returns(Promise.resolve({response: '250'}));
}); });
it('should work', async() => { it('should work', async() => {
@ -73,7 +73,7 @@ describe('Email Unit Tests', () => {
describe("_sendHelper", () => { describe("_sendHelper", () => {
it('should work', async() => { it('should work', async() => {
sendFnStub.resolves({response: '250'}); sendFnStub.returns(Promise.resolve({response: '250'}));
const info = await email._sendHelper(mailOptions); const info = await email._sendHelper(mailOptions);
@ -81,7 +81,7 @@ describe('Email Unit Tests', () => {
}); });
it('should log warning for reponse error', async() => { it('should log warning for reponse error', async() => {
sendFnStub.resolves({response: '554'}); sendFnStub.returns(Promise.resolve({response: '554'}));
const info = await email._sendHelper(mailOptions); const info = await email._sendHelper(mailOptions);
@ -90,7 +90,7 @@ describe('Email Unit Tests', () => {
}); });
it('should fail', async() => { it('should fail', async() => {
sendFnStub.rejects(new Error('boom')); sendFnStub.returns(Promise.reject(new Error('boom')));
try { try {
await email._sendHelper(mailOptions); await email._sendHelper(mailOptions);