src/integration/common/liteSite.lite.js

Summary

Maintainability
A
2 hrs
Test Coverage
export default () => {
  describe('Lite Site Cta', () => {
    const liteSiteCta = document.querySelector("section[data-e2e='lite-cta']");

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

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