mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
fix(linting): Updating linting dependencies and fixing linting issues
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user