refactor: rename all test files to camelCase (#1562)

* rename files to camelCase

* fix imports

* more renames

* pull all client tests out of individual folders

* fix imports

* fix tests
This commit is contained in:
Mayukha Vadari
2021-08-25 16:11:04 -04:00
parent da9feffada
commit f9fe5936b1
366 changed files with 443 additions and 438 deletions

View File

@@ -17,7 +17,7 @@ import {
function createLedgerTest(ledgerIndex: number) {
describe(String(ledgerIndex), function () {
var path =
__dirname + '/../fixtures/rippled/ledger-full-' + ledgerIndex + '.json'
__dirname + '/../fixtures/rippled/ledgerFull' + ledgerIndex + '.json'
var ledgerRaw = fs.readFileSync(path, {encoding: 'utf8'})
var ledgerJSON = JSON.parse(ledgerRaw)