mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 10:56:57 -05:00
Update create-database.test.js
This commit is contained in:
@@ -15,7 +15,9 @@ beforeEach(() => {
|
|||||||
it('can create channels database', () => {
|
it('can create channels database', () => {
|
||||||
const output = content('tests/__data__/output/database/channels.db')
|
const output = content('tests/__data__/output/database/channels.db')
|
||||||
|
|
||||||
expect(output[0]).toMatchObject({
|
expect(output).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
lang: 'en',
|
lang: 'en',
|
||||||
country: 'LV',
|
country: 'LV',
|
||||||
xmltv_id: '1Plus2.lv',
|
xmltv_id: '1Plus2.lv',
|
||||||
@@ -26,9 +28,8 @@ it('can create channels database', () => {
|
|||||||
configPath: 'tests/__data__/input/sites/example.com.config.js',
|
configPath: 'tests/__data__/input/sites/example.com.config.js',
|
||||||
gid: 'en-ee',
|
gid: 'en-ee',
|
||||||
cluster_id: 1
|
cluster_id: 1
|
||||||
})
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
expect(output[1]).toMatchObject({
|
|
||||||
lang: 'ru',
|
lang: 'ru',
|
||||||
country: 'US',
|
country: 'US',
|
||||||
xmltv_id: 'CNNInternationalEurope.us',
|
xmltv_id: 'CNNInternationalEurope.us',
|
||||||
@@ -40,6 +41,8 @@ it('can create channels database', () => {
|
|||||||
gid: 'ca-nl',
|
gid: 'ca-nl',
|
||||||
cluster_id: 1
|
cluster_id: 1
|
||||||
})
|
})
|
||||||
|
])
|
||||||
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
function content(filepath) {
|
function content(filepath) {
|
||||||
|
|||||||
Reference in New Issue
Block a user