mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
Update lint.test.ts
This commit is contained in:
parent
cbeac9dd35
commit
bb36840b72
1 changed files with 16 additions and 2 deletions
|
@ -9,13 +9,27 @@ describe('channels:lint', () => {
|
|||
it('will show a message if the file contains a syntax error', () => {
|
||||
try {
|
||||
const cmd =
|
||||
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/channels-lint.channels.xml'
|
||||
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/error.channels.xml'
|
||||
execSync(cmd, { encoding: 'utf8' })
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
"channels-lint.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
|
||||
"error.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
|
||||
)
|
||||
}
|
||||
})
|
||||
|
||||
it('will show a message if an error occurred while parsing an xml file', () => {
|
||||
try {
|
||||
const cmd =
|
||||
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/invalid.channels.xml'
|
||||
execSync(cmd, { encoding: 'utf8' })
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'invalid.channels.xml\n 2:6 XML declaration allowed only at the start of the document\n'
|
||||
)
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue