domjtalbot/nx-mesh

View on GitHub
examples/sdk-nextjs/specs/index.spec.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { render } from '@testing-library/react';

import Index from '../pages/sources/soap/country-info';

describe('Index', () => {
  it('should render successfully', () => {
    const { baseElement } = render(<Index />);
    expect(baseElement).toBeTruthy();
  });
});