1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Update Prettier to version 2.0

Please note that these changes were done automatically, using `gulp lint --fix`.

Given that the major version number was increased, there's a fair number of (primarily whitespace) changes; please see https://prettier.io/blog/2020/03/21/2.0.0.html
In order to reduce the size of these changes somewhat, this patch maintains the old "arrowParens" style for now (once mozilla-central updates Prettier we can simply choose the same formatting, assuming it will differ here).
This commit is contained in:
Jonas Jenwald 2020-04-14 12:28:14 +02:00
parent a4dd081d7b
commit 426945b480
145 changed files with 2005 additions and 2009 deletions

View file

@ -16,11 +16,11 @@
import { AbortException } from "../../src/shared/util.js";
import { PDFNetworkStream } from "../../src/display/network.js";
describe("network", function() {
describe("network", function () {
var pdf1 = new URL("../pdfs/tracemonkey.pdf", window.location).href;
var pdf1Length = 1016315;
it("read without stream and range", function(done) {
it("read without stream and range", function (done) {
var stream = new PDFNetworkStream({
url: pdf1,
rangeChunkSize: 65536,
@ -31,15 +31,15 @@ describe("network", function() {
var fullReader = stream.getFullReader();
var isStreamingSupported, isRangeSupported;
var promise = fullReader.headersReady.then(function() {
var promise = fullReader.headersReady.then(function () {
isStreamingSupported = fullReader.isStreamingSupported;
isRangeSupported = fullReader.isRangeSupported;
});
var len = 0,
count = 0;
var read = function() {
return fullReader.read().then(function(result) {
var read = function () {
return fullReader.read().then(function (result) {
if (result.done) {
return undefined;
}
@ -52,19 +52,19 @@ describe("network", function() {
var readPromise = Promise.all([read(), promise]);
readPromise
.then(function(page) {
.then(function (page) {
expect(len).toEqual(pdf1Length);
expect(count).toEqual(1);
expect(isStreamingSupported).toEqual(false);
expect(isRangeSupported).toEqual(false);
done();
})
.catch(function(reason) {
.catch(function (reason) {
done.fail(reason);
});
});
it("read custom ranges", function(done) {
it("read custom ranges", function (done) {
// We don't test on browsers that don't support range request, so
// requiring this test to pass.
var rangeSize = 32768;
@ -79,7 +79,7 @@ describe("network", function() {
var fullReader = stream.getFullReader();
var isStreamingSupported, isRangeSupported, fullReaderCancelled;
var promise = fullReader.headersReady.then(function() {
var promise = fullReader.headersReady.then(function () {
isStreamingSupported = fullReader.isStreamingSupported;
isRangeSupported = fullReader.isRangeSupported;
// we shall be able to close the full reader without issues
@ -98,8 +98,8 @@ describe("network", function() {
var result1 = { value: 0 },
result2 = { value: 0 };
var read = function(reader, lenResult) {
return reader.read().then(function(result) {
var read = function (reader, lenResult) {
return reader.read().then(function (result) {
if (result.done) {
return undefined;
}
@ -115,7 +115,7 @@ describe("network", function() {
]);
readPromises
.then(function() {
.then(function () {
expect(result1.value).toEqual(rangeSize);
expect(result2.value).toEqual(tailSize);
expect(isStreamingSupported).toEqual(false);
@ -123,7 +123,7 @@ describe("network", function() {
expect(fullReaderCancelled).toEqual(true);
done();
})
.catch(function(reason) {
.catch(function (reason) {
done.fail(reason);
});
});