src/integration/common/embedImages.js

Summary

Maintainability
A
2 hrs
Test Coverage
export default () => {
  describe('Embed Images', () => {
    const embedImage = document.querySelector("div[data-e2e='embed-image']");

    it('should be in the document', () => {
      expect(embedImage).toBeInTheDocument();
    });

    it('should match snapshot', () => {
      expect(embedImage).toMatchSnapshot();
    });
  });
};