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

import PagesAssetManagementAssetManagementComponentsAssetSubCategory from './pages-asset-management-asset-management-components-asset-sub-category';

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