import * as React from 'react';
import { render } from '@testing-library/react';
import { SkipToContent } from '../SkipToContent';
const props = {};
test('Verify Skip To Content', () => {
const { asFragment } = render();
// Add a useful assertion here.
expect(asFragment()).toMatchSnapshot();
});
test('Verify Skip To Content if forced to display', () => {
const { asFragment } = render();
// Add a useful assertion here.
expect(asFragment()).toMatchSnapshot();
});