Skip to content

Commit

Permalink
fix(editor): Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Sep 17, 2024
1 parent 83574a7 commit ebaca47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/design-system/src/directives/n8n-html.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('Directive n8n-html', () => {
},
});
expect(html()).toBe(
'<div><span>text</span><a href="https://malicious.com">malicious</a><img alt="Ok" src="./images/logo.svg"></div>',
'<div><span>text</span><a href="https://safe.com">safe</a><img alt="Ok" src="./images/logo.svg" /></div>',
);
});
});

0 comments on commit ebaca47

Please sign in to comment.