mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Update create-database.test.js
This commit is contained in:
parent
5db31acc83
commit
091d919c60
1 changed files with 28 additions and 25 deletions
|
@ -15,7 +15,9 @@ beforeEach(() => {
|
|||
it('can create channels database', () => {
|
||||
const output = content('tests/__data__/output/database/channels.db')
|
||||
|
||||
expect(output[0]).toMatchObject({
|
||||
expect(output).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.objectContaining({
|
||||
lang: 'en',
|
||||
country: 'LV',
|
||||
xmltv_id: '1Plus2.lv',
|
||||
|
@ -26,9 +28,8 @@ it('can create channels database', () => {
|
|||
configPath: 'tests/__data__/input/sites/example.com.config.js',
|
||||
gid: 'en-ee',
|
||||
cluster_id: 1
|
||||
})
|
||||
|
||||
expect(output[1]).toMatchObject({
|
||||
}),
|
||||
expect.objectContaining({
|
||||
lang: 'ru',
|
||||
country: 'US',
|
||||
xmltv_id: 'CNNInternationalEurope.us',
|
||||
|
@ -40,6 +41,8 @@ it('can create channels database', () => {
|
|||
gid: 'ca-nl',
|
||||
cluster_id: 1
|
||||
})
|
||||
])
|
||||
)
|
||||
})
|
||||
|
||||
function content(filepath) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue