diff --git a/blockchains/tron/assets/1002963/logo.png b/blockchains/tron/assets/1002963/logo.png new file mode 100644 index 000000000..9fa406e73 Binary files /dev/null and b/blockchains/tron/assets/1002963/logo.png differ diff --git a/src/test/index.test.ts b/src/test/index.test.ts index caafc1751..23bb65dfd 100644 --- a/src/test/index.test.ts +++ b/src/test/index.test.ts @@ -65,7 +65,7 @@ describe(`Test "blockchains" folder`, () => { }) }) - describe(`Asset folder should contain only predefined list of filees`, () => { + describe(`Asset folder should contain only predefined list of files`, () => { readDirSync(chainsFolderPath).forEach(chain => { const assetsPath = getChainAssetsPath(chain) @@ -130,7 +130,7 @@ describe(`Test "blockchains" folder`, () => { test("Expect asset to be TRC10 or TRC20", () => { readDirSync(path).forEach(asset => { - expect(isTRC10(asset) || isTRC20(asset), `Asset ${asset} non TRC10 nor TRC20`).toBe(true) + expect(isTRC10(asset) || isTRC20(asset), `Asset ${asset} at path ${path} non TRC10 nor TRC20`).toBe(true) const assetsLogoPath = getChainAssetLogoPath(Tron, asset) expect(isPathExistsSync(assetsLogoPath), `Missing file at path "${assetsLogoPath}"`).toBe(true)