You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
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 specifying3.4.0
, but my new package-lock.json had3.99.0
.Setting the version of
jasmine-core
in package.json to3.4.0
has resolved the issue for now, but this is not a good long-term fix.The text was updated successfully, but these errors were encountered: