Commit 58f2db49 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Changed code style as to not to disable any eslint rules

parent 20cbfb48
/* eslint-disable arrow-body-style*/
require('~/lib/utils/common_utils'); require('~/lib/utils/common_utils');
(() => { (() => {
...@@ -168,13 +167,13 @@ require('~/lib/utils/common_utils'); ...@@ -168,13 +167,13 @@ require('~/lib/utils/common_utils');
describe('gl.utils.backOff', () => { describe('gl.utils.backOff', () => {
it('solves the promise from the callback', (done) => { it('solves the promise from the callback', (done) => {
const expectedResponseValue = 'Success!'; const expectedResponseValue = 'Success!';
gl.utils.backOff((next, stop) => { gl.utils.backOff((next, stop) => (
return new Promise((resolve) => { new Promise((resolve) => {
resolve(expectedResponseValue); resolve(expectedResponseValue);
}).then((resp) => { }).then((resp) => {
stop(resp); stop(resp);
}); })
}).then((respBackoff) => { )).then((respBackoff) => {
expect(respBackoff).toBe(expectedResponseValue); expect(respBackoff).toBe(expectedResponseValue);
done(); done();
}); });
...@@ -183,7 +182,7 @@ require('~/lib/utils/common_utils'); ...@@ -183,7 +182,7 @@ require('~/lib/utils/common_utils');
it('catches the rejected promise from the callback ', (done) => { it('catches the rejected promise from the callback ', (done) => {
const errorMessage = 'Mistakes were made!'; const errorMessage = 'Mistakes were made!';
gl.utils.backOff((next, stop) => { gl.utils.backOff((next, stop) => {
return new Promise((resolve, reject) => { new Promise((resolve, reject) => {
reject(new Error(errorMessage)); reject(new Error(errorMessage));
}).then((resp) => { }).then((resp) => {
stop(resp); stop(resp);
...@@ -198,8 +197,8 @@ require('~/lib/utils/common_utils'); ...@@ -198,8 +197,8 @@ require('~/lib/utils/common_utils');
it('solves the promise correctly after retrying a third time', (done) => { it('solves the promise correctly after retrying a third time', (done) => {
let numberOfCalls = 1; let numberOfCalls = 1;
const expectedResponseValue = 'Success!'; const expectedResponseValue = 'Success!';
gl.utils.backOff((next, stop) => { gl.utils.backOff((next, stop) => (
return new Promise((resolve) => { new Promise((resolve) => {
resolve(expectedResponseValue); resolve(expectedResponseValue);
}).then((resp) => { }).then((resp) => {
if (numberOfCalls < 3) { if (numberOfCalls < 3) {
...@@ -208,8 +207,8 @@ require('~/lib/utils/common_utils'); ...@@ -208,8 +207,8 @@ require('~/lib/utils/common_utils');
} else { } else {
stop(resp); stop(resp);
} }
}); })
}).then((respBackoff) => { )).then((respBackoff) => {
expect(respBackoff).toBe(expectedResponseValue); expect(respBackoff).toBe(expectedResponseValue);
expect(numberOfCalls).toBe(3); expect(numberOfCalls).toBe(3);
done(); done();
...@@ -218,13 +217,13 @@ require('~/lib/utils/common_utils'); ...@@ -218,13 +217,13 @@ require('~/lib/utils/common_utils');
it('rejects the backOff promise after timing out', (done) => { it('rejects the backOff promise after timing out', (done) => {
const expectedResponseValue = 'Success!'; const expectedResponseValue = 'Success!';
gl.utils.backOff((next) => { gl.utils.backOff(next => (
return new Promise((resolve) => { new Promise((resolve) => {
resolve(expectedResponseValue); resolve(expectedResponseValue);
}).then(() => { }).then(() => {
setTimeout(next(), 5000); // it will time out setTimeout(next(), 5000); // it will time out
}); })
}, 3000).catch((errBackoffResp) => { ), 3000).catch((errBackoffResp) => {
expect(errBackoffResp instanceof Error).toBe(true); expect(errBackoffResp instanceof Error).toBe(true);
expect(errBackoffResp.message).toBe('BACKOFF_TIMEOUT'); expect(errBackoffResp.message).toBe('BACKOFF_TIMEOUT');
done(); done();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment