Skip to content

Upgrade jszip to 3.x to resolve CVE-2021-23413 #656

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix unit test failure when running on macOS 11
  • Loading branch information
lux01 committed Sep 29, 2021
commit 78ce1e5fca492b7ab6b47bcfa0f34bf0d98ce2cf
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ headlesstestoutput*
.nyc_output/
package-lock.json
resourceRegistry.log
libagentcore.dylib
nodejs_dc.log
nodejs_restclient.log
2 changes: 1 addition & 1 deletion tests/api_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ monitor.once('initialized', function() {
function runCommonEnvTests(commonEnvData, t) {
var ARCHS = ['x86', 'x86_64', 'ppc32', 'ppc64', 'ppc64le', 's390', 's390x'];
var ZOS_ARCHS = ['3906', '2964', '2965', '2827', '2828', '2817', '2818'];
var OSES = ['AIX', 'Linux', 'Windows', 'Mac OS X', 'OS/390'];
var OSES = ['AIX', 'Linux', 'Windows', 'Mac OS X', 'macOS', 'OS/390'];

t.ok(ARCHS.indexOf(commonEnvData['os.arch']) != -1, 'Contains a recognised value for os.arch', skipIfzOS);
t.ok(ZOS_ARCHS.indexOf(commonEnvData['os.arch']) != -1, 'Contains a recognised value for z/OS os.arch', skipIfNotzOS);
Expand Down