UNPKG

dolarargentina

Version:

obtener cotizaciones del dolar en argentina

18 lines (16 loc) 484 B
/** * Author: Gustavo David Ferreyra brakdag@gmail.com * Created: 3.10.2018 * MIT license. * Unit Test for dolarargentina library **/ const dolar = require("../lib/index"); const dol = new dolar(); var bancos = dol.getBanklist; describe("Bancos", function () { this.timeout(15000); bancos.forEach(banco => { it(dol.bank[banco].name, function () { dol.getDolarHoy(banco).then((res,fail)=>console.log(res,fail)) }); }); });