Skip to content

Commit

Permalink
Bump markdownz from 8.4.1 to 9.0.0 (#6902)
Browse files Browse the repository at this point in the history
Bumps [markdownz](https://github.com/zooniverse/markdownz) from 8.4.1 to 9.0.0.
- [Release notes](https://github.com/zooniverse/markdownz/releases)
- [Changelog](https://github.com/zooniverse/markdownz/blob/master/CHANGELOG.md)
- [Commits](zooniverse/markdownz@v8.4.1...v9.0.0)

---
updated-dependencies:
- dependency-name: markdownz
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 30, 2023
1 parent 3934c30 commit 0ff6522
Show file tree
Hide file tree
Showing 3 changed files with 768 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ describe('ExternalLink', function() {
/>
);
markdownLink = wrapper.find('span.link-title');
markdownHtml = markdownLink.props().dangerouslySetInnerHTML.__html;
markdownHtml = markdownLink.html();
});

it('should render the markdown hyperlink correctly', function () {
expect(markdownHtml).to.equal('<a rel="noopener nofollow noreferrer" target="_blank" href="https://www.google.com"></a>')
expect(markdownHtml).to.equal('<span class="markdown link-title"><a rel="noopener nofollow noreferrer" target="_blank" href="https://www.google.com"></a></span>')
});

it('should have the Font Awesome external link icon', function () {
Expand Down
Loading

0 comments on commit 0ff6522

Please sign in to comment.