Skip to content

Commit

Permalink
Merge pull request mozilla#18999 from Snuffleupagus/toBase64Util-unit…
Browse files Browse the repository at this point in the history
…test

Use the `toBase64Util` helper function in the unit-tests
  • Loading branch information
timvandermeij authored Nov 3, 2024
2 parents 5f77b90 + f78a8f3 commit c1bcb46
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/unit/display_utils_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
isValidFetchUrl,
PDFDateString,
} from "../../src/display/display_utils.js";
import { bytesToString } from "../../src/shared/util.js";
import { toBase64Util } from "../../src/shared/util.js";

describe("display_utils", function () {
describe("getFilenameFromUrl", function () {
Expand Down Expand Up @@ -179,9 +179,8 @@ describe("display_utils", function () {
});

it('gets fallback filename from query string appended to "data:" URL', function () {
const typedArray = new Uint8Array([1, 2, 3, 4, 5]),
str = bytesToString(typedArray);
const dataUrl = `data:application/pdf;base64,${btoa(str)}`;
const typedArray = new Uint8Array([1, 2, 3, 4, 5]);
const dataUrl = `data:application/pdf;base64,${toBase64Util(typedArray)}`;
// Sanity check to ensure that a "data:" URL was returned.
expect(dataUrl.startsWith("data:")).toEqual(true);

Expand Down

0 comments on commit c1bcb46

Please sign in to comment.