Merge pull request #1545 from PrivateBin/fixes

Fixes for zlib caching & handling undefined globals
This commit is contained in:
El RIDO 2025-06-27 16:49:00 +02:00 committed by GitHub
commit 964b4da50a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 30 additions and 10 deletions

View file

@ -11,7 +11,7 @@ global.WebCrypto = require('@peculiar/webcrypto').Crypto;
// application libraries to test
global.$ = global.jQuery = require('./jquery-3.7.1');
global.RawDeflate = require('./rawinflate-0.3').RawDeflate;
global.zlib = require('./zlib-1.3.1').zlib;
global.zlib = require('./zlib-1.3.1-1').zlib;
require('./prettify');
global.prettyPrint = window.PR.prettyPrint;
global.prettyPrintOne = window.PR.prettyPrintOne;