Path: blob/master/node_modules/@bochilteam/scraper/lib/cjs/religions/test.js
1126 views
"use strict";1Object.defineProperty(exports, "__esModule", { value: true });2const chai_1 = require("chai");3const index_js_1 = require("./index.js");4describe('Religions', () => {5describe('Asmaul Husna', () => {6it('AsmaulHusna', done => {7(0, index_js_1.asmaulhusna)().then(res => {8(0, chai_1.expect)(res).to.be.an('object');9(0, chai_1.expect)(res.index).to.be.a('number');10(0, chai_1.expect)(res.latin).to.be.a('string');11(0, chai_1.expect)(res.arabic).to.be.a('string');12(0, chai_1.expect)(res.translation_id).to.be.a('string');13(0, chai_1.expect)(res.translation_en).to.be.a('string');14return done();15}).catch(done);16});17it('AsmaulHusna JSON', done => {18const res = index_js_1.asmaulhusnajson;19(0, chai_1.expect)(res).to.be.an('array');20(0, chai_1.expect)(res).to.have.length(99);21return done();22});23});24describe('Al quran', () => {25it('Alquran', done => {26(0, index_js_1.alquran)().then(res => {27(0, chai_1.expect)(res).to.have.length(114);28return done();29}).catch(done);30});31});32describe('Jadwal Sholat', () => {33it('jadwalSholat', done => {34(0, index_js_1.jadwalsholat)('Semarang').then(res => {35(0, chai_1.expect)(res).to.be.an('object');36(0, chai_1.expect)(res.today).to.be.an('object');37(0, chai_1.expect)(res.list).to.be.an('array');38(0, chai_1.expect)(res.list).to.have.lengthOf.at.least(27);39return done();40}).catch(done);41});42it('List jadwal sholat', done => {43Promise.resolve(index_js_1.listJadwalSholat).then(res => {44(0, chai_1.expect)(res).to.be.an('array');45(0, chai_1.expect)(res).to.have.lengthOf.at.least(316);46return done();47}).catch(done);48});49});50});51//# sourceMappingURL=test.js.map5253