17 lines
521 B
JavaScript
17 lines
521 B
JavaScript
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;
|
|
});
|
|
});
|
|
});
|