1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #13078 from brendandahl/disable-missing

Disable intermittent unit test "creates pdf doc from non-existent URL"
This commit is contained in:
Brendan Dahl 2021-03-11 21:17:54 -08:00 committed by GitHub
commit 56fd01bf8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,6 +169,10 @@ describe("api", function () {
});
});
it("creates pdf doc from non-existent URL", function (done) {
if (!isNodeJS) {
// re-enable https://github.com/mozilla/pdf.js/issues/13061
pending("Fails intermittently on linux in browsers.");
}
const loadingTask = getDocument(
buildGetDocumentParams("non-existent.pdf")
);