diff --git a/test/unit/util_spec.js b/test/unit/util_spec.js index ac3b64321..cc6adda71 100644 --- a/test/unit/util_spec.js +++ b/test/unit/util_spec.js @@ -167,30 +167,6 @@ describe("util", function () { }); }); - describe("ReadableStream", function () { - it("should return an Object", function () { - const readable = new ReadableStream(); - expect(typeof readable).toEqual("object"); - }); - - it("should have property getReader", function () { - const readable = new ReadableStream(); - expect(typeof readable.getReader).toEqual("function"); - }); - }); - - describe("URL", function () { - it("should return an Object", function () { - const url = new URL("https://example.com"); - expect(typeof url).toEqual("object"); - }); - - it("should have property `href`", function () { - const url = new URL("https://example.com"); - expect(typeof url.href).toEqual("string"); - }); - }); - describe("createValidAbsoluteUrl", function () { it("handles invalid URLs", function () { expect(createValidAbsoluteUrl(undefined, undefined)).toEqual(null);