1
0
Fork 0

tests for error 404

This commit is contained in:
boyska 2021-11-25 22:33:06 +01:00
parent e9dc76c470
commit e5fa7fc3a2

20
test/404.test.js Normal file
View file

@ -0,0 +1,20 @@
const radiomanifest = require('../radiomanifest.js')
const chai = require('chai')
chai.use(require('chai-as-promised'))
const assert = chai.assert
const expect = chai.expect
const testName = 'idontexist'
const url = 'https://example.org/radiomanifest/examples/' + testName + '/'
describe('radiomanifest.js supports example ' + testName, () => {
describe('Get empty radiomanifest', () => {
it('should throw', () => {
const p = radiomanifest.get(url)
expect(p).to.be.rejected;
})
})
})