theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/routes/__test__/Routes.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
import AppSwitcher from '../';
import { children } from './ForemanSwitcher.fixtures'

const fixtures = {
  'renders routes with chidlren': children,
};

describe('Routes', () => {
  describe('rendering routes with children', () => {
    testComponentSnapshotsWithFixtures(AppSwitcher, fixtures);
  });
});