mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
Update tests
This commit is contained in:
parent
ab533e348e
commit
b7214db4fb
2 changed files with 6 additions and 8 deletions
|
@ -9,7 +9,7 @@ describe('channels:lint', () => {
|
|||
it('will show a message if the file contains a syntax error', () => {
|
||||
try {
|
||||
const stdout = execSync(
|
||||
'npm run channels:lint -- tests/__data__/input/channels-lint/channels-lint.channels.xml',
|
||||
'npm run channels:lint -- --channels=tests/__data__/input/channels-lint/channels-lint.channels.xml',
|
||||
{
|
||||
encoding: 'utf8'
|
||||
}
|
||||
|
@ -18,11 +18,9 @@ describe('channels:lint', () => {
|
|||
process.exit(1)
|
||||
} catch (error) {
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect(
|
||||
(error as ExecError).stdout.includes(
|
||||
"tests/__data__/input/channels-lint/channels-lint.channels.xml\n\n\ntests/__data__/input/channels-lint/channels-lint.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
|
||||
)
|
||||
).toBe(true)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
"tests/__data__/input/channels-lint/channels-lint.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
|
@ -9,7 +9,7 @@ describe('channels:validate', () => {
|
|||
it('will show a message if the file contains a duplicate', () => {
|
||||
try {
|
||||
const stdout = execSync(
|
||||
'DATA_DIR=tests/__data__/input/temp/data npm run channels:validate -- tests/__data__/input/channels-validate/duplicate.channels.xml',
|
||||
'DATA_DIR=tests/__data__/input/temp/data npm run channels:validate -- --channels=tests/__data__/input/channels-validate/duplicate.channels.xml',
|
||||
{
|
||||
encoding: 'utf8'
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ describe('channels:validate', () => {
|
|||
it('will show a message if the file contains a channel with wrong xmltv_id', () => {
|
||||
try {
|
||||
const stdout = execSync(
|
||||
'DATA_DIR=tests/__data__/input/temp/data npm run channels:validate -- tests/__data__/input/channels-validate/wrong_xmltv_id.channels.xml',
|
||||
'DATA_DIR=tests/__data__/input/temp/data npm run channels:validate -- --channels=tests/__data__/input/channels-validate/wrong_xmltv_id.channels.xml',
|
||||
{
|
||||
encoding: 'utf8'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue