Unbreak in-app permalink tooltips (#9087)
* Unbreak in-app permalink tooltips Fixes: vector-im/element-web#22874 Signed-off-by: Johannes Marbach <johannesm@element.io> * Appease the linter * Fix the tests
This commit is contained in:
parent
60696d78ca
commit
e28fd8651e
2 changed files with 5 additions and 4 deletions
|
@ -41,9 +41,10 @@ describe('tooltipify', () => {
|
|||
const containers: Element[] = [];
|
||||
tooltipifyLinks([root], [], containers);
|
||||
expect(containers).toHaveLength(1);
|
||||
const anchor = root.querySelector(".mx_TextWithTooltip_target a");
|
||||
const anchor = root.querySelector("a");
|
||||
expect(anchor?.getAttribute("href")).toEqual("/foo");
|
||||
expect(anchor?.innerHTML).toEqual("click");
|
||||
const tooltip = anchor.querySelector(".mx_TextWithTooltip_target");
|
||||
expect(tooltip).toBeDefined();
|
||||
});
|
||||
|
||||
it('ignores node', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue