Update eslint rules

This commit is contained in:
Thomas Oberndörfer
2019-03-06 10:21:29 +01:00
parent cee14ba99c
commit 1da22c1029
8 changed files with 35 additions and 23 deletions

View File

@@ -57,7 +57,7 @@ describe('Email Unit Tests', () => {
sandbox.restore();
});
describe("send", () => {
describe('send', () => {
beforeEach(() => {
sandbox.stub(email, '_sendHelper').returns(Promise.resolve({response: '250'}));
});
@@ -69,7 +69,7 @@ describe('Email Unit Tests', () => {
});
});
describe("_sendHelper", () => {
describe('_sendHelper', () => {
it('should work', async () => {
sendFnStub.returns(Promise.resolve({response: '250'}));