import React from 'react';
import { render } from '@testing-library/react';

import AssignSoGrading from './assign-so-grading';

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