src/integration/pages/articles/mediaPlayerCaption.js

Summary

Maintainability
A
0 mins
Test Coverage
export default () => {
  describe('Media Player Caption', () => {
    it('should have a caption under the media player', () => {
      const figcaptionEl = document.querySelectorAll('figcaption')[1];
      expect(figcaptionEl).toBeInTheDocument();
      expect(figcaptionEl.textContent).toMatchSnapshot();
    });
  });
};