fix(linting): Updating linting dependencies and fixing linting issues

This commit is contained in:
Chris Troutner
2022-01-08 15:52:43 -08:00
parent 7df1a1a1ed
commit cbbb7f76e4
21 changed files with 10845 additions and 11715 deletions
+4 -4
View File
@@ -456,7 +456,7 @@ describe('#BlockchainRouter', () => {
it('should throw 400 error if addresses array is too large', async () => {
const testArray = []
for (var i = 0; i < 25; i++) testArray.push('')
for (let i = 0; i < 25; i++) testArray.push('')
req.body.hashes = testArray
@@ -1006,7 +1006,7 @@ describe('#BlockchainRouter', () => {
it('should throw 400 error if addresses array is too large', async () => {
const testArray = []
for (var i = 0; i < 25; i++) testArray.push('')
for (let i = 0; i < 25; i++) testArray.push('')
req.body.txids = testArray
@@ -1525,7 +1525,7 @@ describe('#BlockchainRouter', () => {
it('should throw 400 error if addresses array is too large', async () => {
const testArray = []
for (var i = 0; i < 25; i++) testArray.push('')
for (let i = 0; i < 25; i++) testArray.push('')
req.body.txids = testArray
@@ -1729,7 +1729,7 @@ describe('#BlockchainRouter', () => {
it('should throw 400 error if addresses array is too large', async () => {
const testArray = []
for (var i = 0; i < 25; i++) testArray.push('')
for (let i = 0; i < 25; i++) testArray.push('')
req.body.proofs = testArray