export function testFooterLocation(div: HTMLDivElement): void {
  expect(div).toHaveAttribute('class', 'col')
  const i = div.querySelector('i')
  for (const c of ['fa', 'fa-map-marker-alt', 'fa-2x']) {
    expect(i).toHaveClass(c)