src/integration/common/embedImages.js
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();
});
});
};