1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Move the reporter file to the test root folder

The reporter is used in both the unit and the font tests, so this commit
moves it to the test root folder to more clearly indicate that this is a
shared resource and so the font tests don't have to reach into the unit
tests folder to import it (which improves separation).
This commit is contained in:
Tim van der Meij 2024-12-22 13:33:41 +01:00
parent a43fc32bf3
commit 22ad864cc7
No known key found for this signature in database
GPG key ID: 8C3FD2925A5F2762
3 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
"use strict";
import { TestReporter } from "../unit/testreporter.js";
import { TestReporter } from "../reporter.js";
async function initializePDFJS(callback) {
await Promise.all(

View file

@ -42,7 +42,7 @@
import { GlobalWorkerOptions } from "pdfjs/display/worker_options.js";
import { isNodeJS } from "../../src/shared/util.js";
import { TestReporter } from "./testreporter.js";
import { TestReporter } from "../reporter.js";
async function initializePDFJS(callback) {
await Promise.all(