-
-
Notifications
You must be signed in to change notification settings - Fork 389
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
chore(package): update deps #3358
Conversation
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jasmine": "^4.1.2", | ||
"eslint-plugin-prettier": "^3.3.1", | ||
"hyperhtml": "^2.34.0", | ||
"idb": "^6.0.0", | ||
"jasmine": "^3.6.4", | ||
"jquery": "^3.5.1", | ||
"jquery": "^3.6.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we still have this here?
tests/spec/core/data-include-spec.js
Outdated
const li = doc.querySelector("section li"); | ||
const li = doc.querySelector("section#test li"); | ||
expect(li).toBeTruthy(); | ||
expect(li.textContent).toContain("Rose"); | ||
expect(li.textContent).toContain("Blue"); | ||
expect(li.textContent).toContain("Red"); | ||
expect(li.textContent).toContain("wasteland"); | ||
expect(li.textContent).toBe("Rose"); | ||
const [p1, p2, p3] = [...doc.querySelectorAll("#test p")]; | ||
expect(p1.textContent).toContain("Blue"); | ||
expect(p2.textContent).toContain("Red"); | ||
expect(p3.textContent).toContain("wasteland"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See markedjs/marked#1934 (and the fix: markedjs/marked#1936)
cc: @saschanaz (don't know if this test was intentional as such)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intention here was to wrap them to li
. It seems marked now requires at least 3-space indentation here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3-space fixes it. Shouldn't be a breaking change for us as we've delegated markdown related changes on marked, which is commonmark compliant (almost).
Thanks!
Closes #3355
Closes #3354
Closes #3353
Closes #3352
Closes #3351
Closes #3350