This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Description
Recent work required that I resolve conflicts in package-lock.json. To do so I simply re-created the file, and that brought in the latest versions w/in the range specified in package.json.
After doing this, one test started failing, in FireFox
Firefox 97.0 (Mac OS 10.15) hub-content:: get content from portal should fetch a portal item and return content w/o metadata FAILED
Unhandled promise rejection: Fake Error throw in getContentMetadata thrown
After some digging around I found an issue about karma that noted the issue was in jasmine-core. When I checked the package-lock.json on master, it was specifying 3.4.0, but my new package-lock.json had 3.99.0.
Setting the version of jasmine-core in package.json to 3.4.0 has resolved the issue for now, but this is not a good long-term fix.