@aidarkezio/main-func
Version:
📦 It has my funcs
142 lines (129 loc) • 3.08 kB
text/typescript
import { expect } from 'chai'
import {
cnbindonesia,
antaranews,
kompas,
suaracom,
liputan6,
merdeka
} from './index.js'
describe('News', () => {
it('CNB indonesia', (done) => {
cnbindonesia().then(data => {
expect(data).to.be.an('array')
expect(data).to.have.length.at.least(1)
data.forEach(({
title,
link,
image,
label,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(label).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
it('antaranews', (done) => {
antaranews().then(data => {
expect(data).to.be.an('array')
expect(data).to.have.length.at.least(1)
data.forEach(({
title,
link,
image,
label,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(label).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
it('kompas', (done) => {
kompas().then(data => {
expect(data).to.be.an('array')
data.forEach(({
title,
link,
image,
label,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(label).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
it('Suara.com', (done) => {
suaracom().then(data => {
expect(data).to.be.an('array')
data.forEach(({
title,
link,
image,
description,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(description).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
it('Liputan6', (done) => {
liputan6().then(data => {
expect(data).to.be.an('array')
data.forEach(({
title,
link,
image,
description,
label,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(description).to.be.a('string')
expect(label).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
it('Merdeka', (done) => {
merdeka().then(data => {
expect(data).to.be.an('array')
data.forEach(({
title,
link,
image,
label,
date
}) => {
expect(title).to.be.a('string')
expect(link).to.be.a('string')
expect(image).to.be.a('string')
expect(label).to.be.a('string')
expect(date).to.be.a('string')
})
return done()
}).catch(done)
})
})